Skip to content

Commit 0d5e994

Browse files
committed
Run tests on Python 3.10
1 parent bb3d823 commit 0d5e994

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
strategy:
4949
matrix:
5050
# Match versions specified in tox.ini
51-
python-version: [3.6, 3.8, 3.9, pypy-3.7]
51+
python-version: ['3.6', '3.8', '3.9', '3.10', 'pypy-3.7']
5252

5353
# Steps represent a sequence of tasks that will be executed as part of the job
5454
steps:

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
ignore = E501,E722
88

99
[tox]
10-
envlist = py36, pypy37, py38, py39, flake8
10+
envlist = py36, pypy37, py38, py39, py310, flake8
1111

1212
[gh-actions]
1313
python =
14-
3.6: py36
14+
3.6.15: py36
1515
pypy-3.7: pypy37
1616
3.8: py38
17-
3.9: py39, flake8
17+
3.9: py39
18+
3.10: py310, flake8
1819

1920
[testenv]
2021
deps =

0 commit comments

Comments
 (0)