From 52e9cab884c14c17d7c7e00b98cecc3ca5e1e509 Mon Sep 17 00:00:00 2001 From: Markus Legner Date: Fri, 4 Nov 2022 18:01:53 +0100 Subject: [PATCH 1/3] Replace 3.11-dev by 3.11 in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93305da7e..bab4bb765 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: name: Test strategy: matrix: - pyver: ['3.7', '3.8', '3.9', '3.10', '3.11-dev'] + pyver: ['3.7', '3.8', '3.9', '3.10', '3.11'] no-extensions: ['', 'Y'] os: [ubuntu, macos, windows] exclude: From a0b94e3a9ba965bdd4fd523c223bf4777fd0262b Mon Sep 17 00:00:00 2001 From: Markus Legner Date: Fri, 4 Nov 2022 18:02:07 +0100 Subject: [PATCH 2/3] Add Python 3.11 support --- CHANGES/872.feature.rst | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 CHANGES/872.feature.rst diff --git a/CHANGES/872.feature.rst b/CHANGES/872.feature.rst new file mode 100644 index 000000000..acfd448f2 --- /dev/null +++ b/CHANGES/872.feature.rst @@ -0,0 +1 @@ +Added Python 3.11 support diff --git a/setup.py b/setup.py index 8dbaaeadd..dba780f5d 100644 --- a/setup.py +++ b/setup.py @@ -65,6 +65,7 @@ def read(f): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Development Status :: 5 - Production/Stable", ], author="Andrew Svetlov", From 73891bef587fd051b22e02ca870db70a769150ff Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 3 Dec 2022 03:14:22 +0100 Subject: [PATCH 3/3] Make the change note verbose --- CHANGES/872.feature.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES/872.feature.rst b/CHANGES/872.feature.rst index acfd448f2..82307faa6 100644 --- a/CHANGES/872.feature.rst +++ b/CHANGES/872.feature.rst @@ -1 +1 @@ -Added Python 3.11 support +Declared the official support for Python 3.11 — by :user:`mlegner`.