Skip to content

Commit

Permalink
Merge pull request #343 from cjwatson/py311
Browse files Browse the repository at this point in the history
Finish adding support for Python 3.11
  • Loading branch information
jelmer authored Mar 14, 2023
2 parents 1f9eda5 + 54410b5 commit edb7847
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11", pypy3]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Improvements

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

* Add support for Python 3.11.

2.5.0
~~~~~

Expand Down
2 changes: 1 addition & 1 deletion scripts/all-pythons
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ def now():
if __name__ == '__main__':
sys.path.append(ROOT)
result = TestProtocolClient(sys.stdout)
for version in '3.6 3.7 3.8 3.9 3.10'.split():
for version in '3.6 3.7 3.8 3.9 3.10 3.11'.split():
run_for_python(version, result, sys.argv[1:])
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifier =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310,pypy3
envlist = py36,py37,py38,py39,py310,py311,pypy3
minversion = 1.6

[testenv]
Expand Down

0 comments on commit edb7847

Please sign in to comment.