Skip to content

Commit

Permalink
Add Python 3.13 support using legacy-cgi
Browse files Browse the repository at this point in the history
  • Loading branch information
luhn committed Oct 10, 2024
1 parent 9973a6c commit 2d4905c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "pypy-3.9"
- "pypy-3.10"
os:
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@
packages=find_packages("src", exclude=["tests"]),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[
"legacy-cgi~=2.6; python_version >= '3.13'",
],
zip_safe=True,
extras_require={"testing": testing_extras, "docs": docs_extras},
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
lint,
py38,py39,py310,py311,py312,pypy39,pypy310,
py38,py39,py310,py311,py312,py313,pypy39,pypy310,
coverage,
docs,
isolated_build = True
Expand Down

0 comments on commit 2d4905c

Please sign in to comment.