Skip to content

Commit 687032e

Browse files
authored
chore: add Python 3.9 to supported versions (#52)
1 parent 6bdf9b7 commit 687032e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
strategy:
5050
matrix:
51-
python-version: [3.6, 3.7, 3.8]
51+
python-version: [3.6, 3.7, 3.8, 3.9]
5252

5353
steps:
5454
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"ape_networks=ape_networks._cli:cli",
8282
],
8383
},
84-
python_requires=">=3.6,<3.9",
84+
python_requires=">=3.6,<3.10",
8585
extras_require=extras_require,
8686
py_modules=[
8787
"ape",
@@ -122,5 +122,6 @@
122122
"Programming Language :: Python :: 3.6",
123123
"Programming Language :: Python :: 3.7",
124124
"Programming Language :: Python :: 3.8",
125+
"Programming Language :: Python :: 3.9",
125126
],
126127
)

0 commit comments

Comments
 (0)