Skip to content

Commit

Permalink
chore: add support for Python 3.10 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu authored Dec 20, 2021
1 parent fd9583b commit 5331bf8
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 @@ -49,7 +49,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
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
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"ape_test=ape_test._cli:cli",
],
},
python_requires=">=3.7,<3.10",
python_requires=">=3.7,<3.11",
extras_require=extras_require,
py_modules=packages_data["__modules__"],
license="Apache-2.0",
Expand All @@ -124,5 +124,6 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)

0 comments on commit 5331bf8

Please sign in to comment.