Skip to content

Commit 19772d2

Browse files
committed
Add support for Python 3.10
1 parent 3affd88 commit 19772d2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/pythonpackage.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.6", "3.7", "3.8", "3.9"]
18+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
1919

2020
steps:
2121
- uses: actions/checkout@v2

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.7",
4343
"Programming Language :: Python :: 3.8",
4444
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.10",
4546
"Programming Language :: Python :: 3 :: Only",
4647
],
4748
long_description=long_description,

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = flake8, py36, py37, py38, py39
7+
envlist = flake8, py36, py37, py38, py39, py310
88

99
[testenv]
1010
commands = nosetests {posargs:--with-coverage --cover-package=smmap}

0 commit comments

Comments
 (0)