Skip to content

Commit d8fa43e

Browse files
Support Python 3.11 (#106)
* Support Python 3.11
1 parent e24b9f1 commit d8fa43e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
fail-fast: false
77
matrix:
88
os: [ubuntu-latest]
9-
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
9+
python: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
1010
runs-on: ${{ matrix.os }}
1111
steps:
1212
- uses: actions/checkout@v2

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,14 @@
4949
"License :: OSI Approved :: MIT License",
5050
"Operating System :: OS Independent",
5151
"Programming Language :: Python",
52+
"Programming Language :: Python :: 3",
5253
"Programming Language :: Python :: 3.6",
5354
"Programming Language :: Python :: 3.7",
5455
"Programming Language :: Python :: 3.8",
5556
"Programming Language :: Python :: 3.9",
5657
"Programming Language :: Python :: 3.10",
58+
"Programming Language :: Python :: 3.11",
59+
"Programming Language :: Python :: 3 :: Only",
5760
"Topic :: Internet :: WWW/HTTP",
5861
"Topic :: Internet :: WWW/HTTP :: WSGI",
5962
"Topic :: Security",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310
2+
envlist = py36, py37, py38, py39, py310, py311
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)