Skip to content

Commit 902538a

Browse files
pgjonesKriechi
authored andcommitted
Added support for Python 3.10
1 parent 76c130f commit 902538a

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- 3.7
1818
- 3.8
1919
- 3.9
20+
- "3.10"
2021
- pypy3
2122

2223
steps:

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Release History
44
Unreleased
55
----------
66

7-
- <ToDo: add new entries here>
7+
- Added support for Python 3.10.
88

99

1010
1.0.0 (2020-11-22)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
'Programming Language :: Python :: 3.7',
4444
'Programming Language :: Python :: 3.8',
4545
'Programming Language :: Python :: 3.9',
46+
'Programming Language :: Python :: 3.10',
4647
'Programming Language :: Python :: Implementation :: CPython',
4748
'Programming Language :: Python :: Implementation :: PyPy',
4849
],

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, pypy3, lint, docs, packaging
2+
envlist = py36, py37, py38, py39, py310, pypy3, lint, docs, packaging
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38
9-
3.9: py39, lint, docs, packaging
9+
3.9: py39
10+
3.10: py310, lint, docs, packaging
1011
pypy3: pypy3
1112

1213
[testenv]
@@ -46,7 +47,7 @@ commands =
4647
make html
4748

4849
[testenv:packaging]
49-
basepython = python3.9
50+
basepython = python3.10
5051
deps =
5152
check-manifest==0.46
5253
readme-renderer==29.0

0 commit comments

Comments
 (0)