Skip to content

Commit

Permalink
Test under 3.11-dev (#2302)
Browse files Browse the repository at this point in the history
* Test under 3.11.0-beta.3

* Ignore cgi and importlib warnings

* Ignore src_constant warning

* Install whell before other requirements

* Minor

* Remove uvicorn ignore

* Use 3.11-dev instead

* Add 3.11 to classifiers

* Revert unrelated change

* Bump coverage
  • Loading branch information
j178 committed Sep 29, 2022
1 parent cdde07f commit 8088fc7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Expand Up @@ -14,7 +14,7 @@ jobs:

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"]

steps:
- uses: "actions/checkout@v3"
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Expand Up @@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet :: WWW/HTTP",
]
dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -21,7 +21,7 @@ twine==4.0.1
# Tests & Linting
autoflake==1.4
black==22.8.0
coverage==6.4.1
coverage==6.4.4
cryptography==37.0.2
flake8==3.9.2
flake8-bugbear==22.7.1
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Expand Up @@ -20,7 +20,8 @@ combine_as_imports = True
addopts = -rxXs
filterwarnings =
error
default:::uvicorn
default:path is deprecated:DeprecationWarning:certifi
default:'cgi' is deprecated:DeprecationWarning
asyncio_mode = strict
markers =
copied_from(source, changes=None): mark test as copied from somewhere else, along with a description of changes made to accodomate e.g. our test setup
Expand Down

0 comments on commit 8088fc7

Please sign in to comment.