summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2023-03-01 09:12:04 +0100
committerStefan Behnel <stefan_ml@behnel.de>2023-03-01 09:12:04 +0100
commit0df24962b9747552e95d3d676ed23142e97b8cdf (patch)
tree0448f8d658fce06854c87ec059ea789ed548fcbb
parentd675bf287ba2b60c362a1fac80f8338565756675 (diff)
parentbe5425f16b0af4b922fa790e767b548335da2620 (diff)
downloadcython-0df24962b9747552e95d3d676ed23142e97b8cdf.tar.gz
Merge branch '0.29.x' of git+ssh://github.com/cython/cython into 0.29.x
-rw-r--r--CHANGES.rst3
-rwxr-xr-xsetup.py1
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 6df87ce87..732ed5dbf 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
----------
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",