Skip to content

Commit

Permalink
chore: add Python 3.9 to supported versions (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored May 26, 2021
1 parent 6bdf9b7 commit 687032e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"ape_networks=ape_networks._cli:cli",
],
},
python_requires=">=3.6,<3.9",
python_requires=">=3.6,<3.10",
extras_require=extras_require,
py_modules=[
"ape",
Expand Down Expand Up @@ -122,5 +122,6 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

0 comments on commit 687032e

Please sign in to comment.