From 54410b5d2396ea9ef0cd03925fa3d8dbc83b58a5 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Tue, 14 Mar 2023 10:54:34 +0000 Subject: Finish adding support for Python 3.11 --- .github/workflows/test.yml | 2 +- NEWS | 2 ++ scripts/all-pythons | 2 +- setup.cfg | 1 + tox.ini | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6793d7d..fbaa5df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 diff --git a/NEWS b/NEWS index 93d090a..73f2fc8 100644 --- a/NEWS +++ b/NEWS @@ -31,6 +31,8 @@ Improvements * Replace deprecated ``cgi`` module usage with ``email``. +* Add support for Python 3.11. + 2.5.0 ~~~~~ diff --git a/scripts/all-pythons b/scripts/all-pythons index 28793ec..9d84425 100755 --- a/scripts/all-pythons +++ b/scripts/all-pythons @@ -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:]) diff --git a/setup.cfg b/setup.cfg index d88deed..b988065 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/tox.ini b/tox.ini index b28a030..0bb326b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36,py37,py38,py39,py310,pypy3 +envlist = py36,py37,py38,py39,py310,py311,pypy3 minversion = 1.6 [testenv] -- cgit v1.2.1