diff --git a/.circleci/config.yml b/.circleci/config.yml index 87fc76bd5..9bb57a69d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,9 +4,8 @@ workflows: version: 2 workflow: jobs: - - test-3.8 - - test-3.9 - test-3.10 + - test-3.11 defaults: &defaults working_directory: ~/code @@ -20,18 +19,13 @@ defaults: &defaults command: pytest tests/ jobs: - test-3.8: - <<: *defaults - docker: - - image: circleci/python:3.8 - - image: mongo:3.2.19 - test-3.9: + test-3.10: <<: *defaults docker: - - image: circleci/python:3.9 + - image: circleci/python:3.10 - image: mongo:3.2.19 - test-3.10: + test-3.11: <<: *defaults docker: - - image: circleci/python:3.10 + - image: cimg/python:3.11 - image: mongo:3.2.19