Skip to content

Commit ea2f4de

Browse files
committed
Test on Python 3.10 too
1 parent f0f044e commit ea2f4de

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.circleci/config.yml

+17
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,17 @@ jobs:
140140

141141
- *postgres-container
142142

143+
test-310:
144+
<<: *test-template
145+
docker:
146+
- image: circleci/python:3.10
147+
environment:
148+
<<: *steps-environment
149+
TOXENV: py39
150+
COVERALLS: false
151+
152+
- *postgres-container
153+
143154
lint:
144155
working_directory: ~/routemaster
145156
docker:
@@ -280,6 +291,10 @@ workflows:
280291
filters:
281292
tags:
282293
only: /.*/
294+
- test-310:
295+
filters:
296+
tags:
297+
only: /.*/
283298
- lint:
284299
filters:
285300
tags:
@@ -293,6 +308,8 @@ workflows:
293308
- test-36
294309
- test-37
295310
- test-38
311+
- test-39
312+
- test-310
296313
- lint
297314
- typecheck
298315
filters:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
'Programming Language :: Python :: 3.7',
4040
'Programming Language :: Python :: 3.8',
4141
'Programming Language :: Python :: 3.9',
42+
'Programming Language :: Python :: 3.10',
4243
'Topic :: Office/Business',
4344
),
4445

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,mypy,lint
2+
envlist = py36,py37,py38,py39,py310,mypy,lint
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)