Skip to content
This repository was archived by the owner on Jan 17, 2025. It is now read-only.

Commit d67b466

Browse files
authored
add py3.10 as supported version (#134)
* add py3.10 as supported version * turn 3.10 into string * bump pytest to 6.2.5
1 parent f05d553 commit d67b466

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/pythonapp.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.7, 3.8, 3.9]
18+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1919

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

dev-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ py==1.10.0
1616
pycodestyle==2.7.0
1717
pyflakes==2.3.1
1818
pyparsing==2.4.7
19-
pytest==6.2.3
19+
pytest==6.2.5
2020
regex==2021.4.4
2121
toml==0.10.2
2222
typed-ast==1.4.3

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"Programming Language :: Python :: 3.7",
3636
"Programming Language :: Python :: 3.8",
3737
"Programming Language :: Python :: 3.9",
38+
"Programming Language :: Python :: 3.10",
3839
],
3940
zip_safe=False, # This might be needed for requirements.txt
4041
python_requires=">=3.7",

0 commit comments

Comments
 (0)