Skip to content

Commit 65fb3bd

Browse files
authored
feat: add Python 3.10 support (#49)
Signed-off-by: Roald Nefs <[email protected]>
1 parent 6e32129 commit 65fb3bd

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python: [3.6, 3.7, 3.8, 3.9]
16+
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
1717

1818
steps:
1919

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def get_long_description() -> str:
5454
"Programming Language :: Python :: 3.7",
5555
"Programming Language :: Python :: 3.8",
5656
"Programming Language :: Python :: 3.9",
57+
"Programming Language :: Python :: 3.10",
5758
],
5859
extras_require={},
5960
)

tox.ini

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# install tox" and then run "tox" from this directory.
55

66
[tox]
7-
envlist = {py36,py37,py38,py39}-install,mypy,pep8
7+
envlist = {py36,py37,py38,py39,py310}-install,mypy,pep8
88

99
[testenv]
1010
deps =
@@ -42,6 +42,10 @@ commands = {[testenv:install]commands}
4242
skip_install = {[testenv:install]skip_install}
4343
commands = {[testenv:install]commands}
4444

45+
[testenv:py310-install]
46+
skip_install = {[testenv:install]skip_install}
47+
commands = {[testenv:install]commands}
48+
4549
[mypy]
4650

4751
[flake8]

0 commit comments

Comments
 (0)