Skip to content

Commit edb7847

Browse files
authored
Merge pull request #343 from cjwatson/py311
Finish adding support for Python 3.11
2 parents 1f9eda5 + 54410b5 commit edb7847

5 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
11+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy3]
1212

1313
steps:
1414
- uses: actions/checkout@v2

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ Improvements
3131

3232
* Replace deprecated ``cgi`` module usage with ``email``.
3333

34+
* Add support for Python 3.11.
35+
3436
2.5.0
3537
~~~~~
3638

scripts/all-pythons

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,5 @@ def now():
8989
if __name__ == '__main__':
9090
sys.path.append(ROOT)
9191
result = TestProtocolClient(sys.stdout)
92-
for version in '3.6 3.7 3.8 3.9 3.10'.split():
92+
for version in '3.6 3.7 3.8 3.9 3.10 3.11'.split():
9393
run_for_python(version, result, sys.argv[1:])

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifier =
1717
Programming Language :: Python :: 3.8
1818
Programming Language :: Python :: 3.9
1919
Programming Language :: Python :: 3.10
20+
Programming Language :: Python :: 3.11
2021
Programming Language :: Python :: 3 :: Only
2122
Programming Language :: Python :: Implementation :: CPython
2223
Programming Language :: Python :: Implementation :: PyPy

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,pypy3
2+
envlist = py36,py37,py38,py39,py310,py311,pypy3
33
minversion = 1.6
44

55
[testenv]

0 commit comments

Comments
 (0)