From edf82d83ce535fb44c370d94a99da2bfc144bfaf Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 28 Dec 2023 12:58:20 +0100 Subject: [PATCH] [ci] add python 3.12 to circleci --- .circleci/config.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1e98a772..b2594c7e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -82,6 +82,33 @@ jobs: - store_artifacts: path: dist/ + build-312: + docker: + - image: cimg/python:3.12 + steps: + - checkout + - run: *apt-install + - run: *pip-install + - run: *build-wheel + - run: *install-wheel + - run: *test-pytest + - run: *uninstall-wheel + - store_artifacts: + path: dist/ + + build-312-nodeps: + docker: + - image: cimg/python:3.12 + steps: + - checkout + - run: *pip-install + - run: *build-wheel + - run: *install-wheel + - run: *test-pytest-nosounds + - run: *uninstall-wheel + - store_artifacts: + path: dist/ + workflows: version: 2 @@ -90,3 +117,5 @@ workflows: - build-36 - build-310 - build-310-nodeps + - build-312 + - build-312-nodeps -- 2.11.0