Skip to content

Commit

Permalink
Add support for Python 3.10 (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Mar 22, 2022
1 parent 87b6ca8 commit 56ab62c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
python-version:
- "3.8"
- "3.9"
- "3.10"

steps:
- uses: actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py38, py39, lint
envlist = py38, py39, py310, lint
skip_missing_interpreters = True

[gh-actions]
python =
3.8: py38, lint
3.9: py39
3.10: py310

[testenv]
commands =
Expand Down

0 comments on commit 56ab62c

Please sign in to comment.