Skip to content

Commit

Permalink
add py3.10 as supported version (#16)
Browse files Browse the repository at this point in the history
* add py3.10 as supported version

* turn 3.10 into string
  • Loading branch information
ldruschk authored Oct 26, 2021
1 parent c97789a commit d18bfb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
zip_safe=False, # This might be needed for requirements.txt
python_requires=">=3.7",
Expand Down

0 comments on commit d18bfb2

Please sign in to comment.