From: Paul Brossier Date: Thu, 28 Dec 2023 11:58:20 +0000 (+0100) Subject: [ci] add python 3.12 to circleci X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=edf82d83ce535fb44c370d94a99da2bfc144bfaf;p=aubio.git [ci] add python 3.12 to circleci --- 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