Skip to content

Commit

Permalink
add python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
moogar0880 committed Oct 27, 2021
1 parent 6158f0a commit cbf3407
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
# CircleCI Python images available at: https://hub.docker.com/r/circleci/python/
- image: circleci/python:3.9

.py_3_10_container: &py_3_10_container
docker:
# CircleCI Python images available at: https://hub.docker.com/r/circleci/python/
- image: circleci/python:3.10

.pytest: &pytest
run:
name: Run unit tests
Expand Down Expand Up @@ -115,6 +120,18 @@ jobs:
<<: *common
<<: *lint_steps

#############################################################################
### Python 3.10 Jobs
#############################################################################
test.3.10:
<<: *py_3_10_container
<<: *common
<<: *test_steps
lint.3.10:
<<: *py_3_10_container
<<: *common
<<: *lint_steps

workflows:
version: 2

Expand All @@ -137,3 +154,8 @@ workflows:
jobs:
- test.3.9
- lint.3.9

py-3.10-verify:
jobs:
- test.3.10
- lint.3.10

0 comments on commit cbf3407

Please sign in to comment.