summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2023-03-14 10:57:49 +0000
committerGitHub <noreply@github.com>2023-03-14 10:57:49 +0000
commitedb7847b08d6be9f145e4cf2f12abc6a6299ea54 (patch)
tree4974a7b385917d5a858926419547b2a5d7636c7e
parent1f9eda5c924596611a0e657b1e444cb2c426d0cf (diff)
parent54410b5d2396ea9ef0cd03925fa3d8dbc83b58a5 (diff)
downloadtesttools-edb7847b08d6be9f145e4cf2f12abc6a6299ea54.tar.gz
Merge pull request #343 from cjwatson/py311
Finish adding support for Python 3.11
-rw-r--r--.github/workflows/test.yml2
-rw-r--r--NEWS2
-rwxr-xr-xscripts/all-pythons2
-rw-r--r--setup.cfg1
-rw-r--r--tox.ini2
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]