From 67b7a7b448de58d2bf50d611d36991e3e3372aae Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Mon, 6 Feb 2023 19:14:44 +0200 Subject: Declare support for Python 3.11 (#5244) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 1b10c5bd2..027e0fc3d 100755 --- a/setup.py +++ b/setup.py @@ -274,6 +274,7 @@ setup( "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: C", -- cgit v1.2.1 From be5425f16b0af4b922fa790e767b548335da2620 Mon Sep 17 00:00:00 2001 From: Matus Valo Date: Tue, 28 Feb 2023 20:21:40 +0100 Subject: [0.29] Document noexcept in CHANGES.rst (#5273) --- CHANGES.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index c8a2ebc90..447fd6872 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -83,6 +83,9 @@ Features added * A new argument ``--module-name`` was added to the ``cython`` command to provide the (one) exact target module name from the command line. Patch by Matthew Brett and h-vetinari. (Github issue #4906) + +* A new keyword ``noexcept`` was added for forward compatibility with Cython 3. + Patch by David Woods. (Github issue #4903) Bugs fixed ---------- -- cgit v1.2.1