Skip to content

Commit

Permalink
Add support for Python 3.10 (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare committed Sep 9, 2022
1 parent b27ad14 commit d7f89bc
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:
- "3.7"
- "3.8"
- "3.9"
- "3.10"

steps:
- uses: actions/checkout@v3.0.2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: FastAPI ",
"Topic :: Internet",
],
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[tox]
envlist = py37, py38, py39, lint, mypy
envlist = py37, py38, py39, py310, lint, mypy
skip_missing_interpreters = True

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

[testenv]
commands =
Expand Down

0 comments on commit d7f89bc

Please sign in to comment.