Skip to content

Commit

Permalink
Add 3.10 rc
Browse files Browse the repository at this point in the history
  • Loading branch information
CircleCI committed Jan 28, 2021
1 parent 15c674c commit 31ebeea
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ workflows:
version: 2
test:
jobs:
- test_full/cp310-310-linux
- test_full/cp39-39-linux
- test_full/cp38-38-linux
- test_full/cp37-37m-linux
Expand All @@ -219,6 +220,7 @@ workflows:
- test_full/cp34-34m-linux
- test_full/cp27-27mu-linux

- test_minimal/cp310-310-linux
- test_minimal/cp39-39-linux
- test_minimal/cp38-38-linux
- test_minimal/cp37-37m-linux
Expand Down Expand Up @@ -260,7 +262,7 @@ jobs:
- image: circleci/python
steps:
- checkout
working_directory: ~/{{ .Environment.CIRCLE_JOB }}
#working_directory: ~/{{ .Environment.CIRCLE_JOB }}

.test_minimal_template: &test_minimal_template
<<:
Expand Down Expand Up @@ -422,6 +424,11 @@ jobs:
#
# All we need to do is change the base docker image so python is the
# version we want we can reuse everything else from the template
#
test_full/cp310-310-linux:
<<: *test_full_template
docker:
- image: circleci/python:3.10-rc

test_full/cp39-39-linux:
<<: *test_full_template
Expand Down Expand Up @@ -459,9 +466,13 @@ jobs:
- image: circleci/python:2.7

# ------------
test_minimal/cp310-310-linux:
<<: *test_minimal_template
docker:
- image: circleci/python:3.10-rc

test_minimal/cp39-39-linux:
<<: *test_full_template
<<: *test_minimal_template
docker:
- image: circleci/python:3.9

Expand Down

0 comments on commit 31ebeea

Please sign in to comment.