Skip to content

Commit

Permalink
Add support for python 3.11 (#68)
Browse files Browse the repository at this point in the history
* Add support for python 3.11

* Update setup.py

* Update ci.yaml

* Update ci.yaml

* pin python to <3.12

* fix typo

* fix another typo
  • Loading branch information
jbusecke authored Feb 22, 2024
1 parent 2ea631a commit fa3ab84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,10 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=install_requires,
python_requires=">=3.8",
python_requires=">=3.8, <3.12",
# long_description=long_description,
# long_description_content_type="text/x-rst",
setup_requires="setuptools_scm",
Expand Down

0 comments on commit fa3ab84

Please sign in to comment.