From: Paul Brossier Date: Sun, 26 Dec 2021 03:22:39 +0000 (-0500) Subject: [ci] switch circleci to python 3.10 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=ea7f48efe513a78e0e7fca8fd180ee3ee0503e89;p=aubio.git [ci] switch circleci to python 3.10 --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 8312f420..baa35df3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,9 +66,9 @@ jobs: - store_artifacts: path: dist/ - build-latest: + build-310: docker: - - image: cimg/python:latest + - image: cimg/python:3.10 steps: - checkout - run: *apt-install @@ -80,9 +80,9 @@ jobs: - store_artifacts: path: dist/ - build-latest-nodeps: + build-310-nodeps: docker: - - image: cimg/python:latest + - image: cimg/python:3.10 steps: - checkout - run: *pip-install @@ -100,5 +100,5 @@ workflows: jobs: - build-27 - build-36 - - build-latest - - build-latest-nodeps + - build-310 + - build-310-nodeps