From 0ac8570af5b64f1a91ab64ce5124641a3b31ba9e Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Thu, 21 Sep 2023 20:28:15 -0400 Subject: [PATCH] Declare our minimum supported Cython version Now that we use `noexcept` in some Cython functions signatures, we can no longer support Cython versions prior to 0.29.31. Signed-off-by: Matt Wozniski --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4e42f744eb..c06952f383 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = [ "setuptools", "wheel", - "Cython" + "Cython>=0.29.31" ] build-backend = 'setuptools.build_meta'