Skip to content

Commit 0da8659

Browse files
committed
Add Python 3.10 to test matrix & classifier list
1 parent 30597b7 commit 0da8659

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
python: "3.8"
2424
- os: ubuntu
2525
python: "3.9"
26+
- os: ubuntu
27+
python: "3.10"
2628
- os: macos
2729
python: "3.7"
2830
- os: windows

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
'Programming Language :: Python :: 3.6',
7070
'Programming Language :: Python :: 3.7',
7171
'Programming Language :: Python :: 3.8',
72+
'Programming Language :: Python :: 3.9',
73+
'Programming Language :: Python :: 3.10',
7274
'Programming Language :: Python :: Implementation :: CPython',
7375
'Topic :: Internet :: WWW/HTTP',
7476
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py{3.6,3.7,3.8,3.9},docs,flake8
2+
envlist = py{3.6,3.7,3.8,3.9,3.10},docs,flake8
33

44
[testenv]
55
basepython =
66
py3.6: python3.6
77
py3.7: python3.7
88
py3.8: python3.8
99
py3.9: python3.9
10+
py3.10: python3.10
1011
passenv = *
1112
usedevelop=True
1213
deps =

0 commit comments

Comments
 (0)