From ea7f48efe513a78e0e7fca8fd180ee3ee0503e89 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 25 Dec 2021 22:22:39 -0500 Subject: [PATCH] [ci] switch circleci to python 3.10 --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 -- 2.11.0