Skip to content

Commit

Permalink
Support Python 3.11 (#1652)
Browse files Browse the repository at this point in the history
* Support Python 3.11

* Ignore cgi deprecated message
  • Loading branch information
Kludex committed Oct 29, 2022
1 parent 7babada commit 762f6d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
os: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: "actions/checkout@v3"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Expand Up @@ -23,6 +23,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -72,6 +72,7 @@ filterwarnings=
# Turn warnings that aren't filtered into exceptions
error
ignore: \"watchgod\" is depreciated\, you should switch to watchfiles \(`pip install watchfiles`\)\.:DeprecationWarning
ignore: 'cgi' is deprecated and slated for removal in Python 3\.13:DeprecationWarning

[coverage:run]
omit = venv/*
Expand Down

0 comments on commit 762f6d7

Please sign in to comment.