Skip to content

Commit 4371b2b

Browse files
ckoehnrafiss
authored andcommitted
Update test pipeline to Python 3.9
1 parent 98cda5b commit 4371b2b

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

circle.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ version: 2
1919
.x-tox-version: &tox-version
2020
TOX_VERSION: 3.23.1
2121

22-
.x-py37: &py37
22+
.x-py39: &py39
2323
environment:
24-
TOXENV: py37
24+
TOXENV: py39
2525
<<: *tox-version
2626

2727
.x-test-steps: &test-steps
@@ -38,37 +38,37 @@ version: 2
3838
command: ${HOME}/.local/bin/tox
3939

4040
jobs:
41-
test-py37-19.2:
41+
test-py39-19.2:
4242
docker:
43-
- image: circleci/python:3.7
43+
- image: circleci/python:3.9
4444
- *cockroach-19-2
4545
<<: *test-steps
46-
<<: *py37
46+
<<: *py39
4747

48-
test-py37-20.1:
48+
test-py39-20.1:
4949
docker:
50-
- image: circleci/python:3.7
50+
- image: circleci/python:3.9
5151
- *cockroach-20-1
5252
<<: *test-steps
53-
<<: *py37
53+
<<: *py39
5454

55-
test-py37-20.2:
55+
test-py39-20.2:
5656
docker:
57-
- image: circleci/python:3.7
57+
- image: circleci/python:3.9
5858
- *cockroach-20-2
5959
<<: *test-steps
60-
<<: *py37
60+
<<: *py39
6161

62-
test-py37-21.1:
62+
test-py39-21.1:
6363
docker:
64-
- image: circleci/python:3.7
64+
- image: circleci/python:3.9
6565
- *cockroach-21-1
6666
<<: *test-steps
67-
<<: *py37
67+
<<: *py39
6868

6969
lint:
7070
docker:
71-
- image: circleci/python:3.7
71+
- image: circleci/python:3.9
7272
environment:
7373
<<: *tox-version
7474
steps:
@@ -84,8 +84,8 @@ workflows:
8484
version: 2
8585
test-and-lint:
8686
jobs:
87-
- test-py37-19.2
88-
- test-py37-20.1
89-
- test-py37-20.2
90-
- test-py37-21.1
87+
- test-py39-19.2
88+
- test-py39-20.1
89+
- test-py39-20.2
90+
- test-py39-21.1
9191
- lint

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
# We do not currently test with pypy because psycopg2 does not work there.
33
envlist =
4-
py37
4+
py39
55
lint
66

77
[testenv]

0 commit comments

Comments
 (0)