From 5d56e18a70961f6bf680676bb8fb0b558965daa1 Mon Sep 17 00:00:00 2001 From: Michael Aquilina Date: Tue, 23 Nov 2021 14:06:28 +0000 Subject: [PATCH] test python 3.10 in circleci --- .circleci/config.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 69a0f41..9bdc763 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -43,6 +43,11 @@ jobs: name: yamllint command: yamllint . + test-3.10: + docker: + - image: "python:3.10" + <<: *test + test-3.9: docker: - image: "python:3.9" @@ -73,3 +78,4 @@ workflows: - test-3.7 - test-3.8 - test-3.9 + - test-3.10