Skip to content

Commit

Permalink
support python 3.10 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra authored Nov 14, 2021
1 parent 78d4c52 commit 57c75bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]

steps:
- uses: actions/checkout@v1
Expand All @@ -22,4 +22,4 @@ jobs:
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
run: tox
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def find_bundled_files():
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
],
python_requires=">=3.6",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion=2.3.1
envlist = py36,py37,py38,py39,black
envlist = py36,py37,py38,py39,py310,black
isolated_build = True

[testenv]
Expand All @@ -20,3 +20,4 @@ python =
3.7: py37
3.8: py38
3.9: py39, black
3.10: py310

0 comments on commit 57c75bf

Please sign in to comment.