From 03e964271e23f3e52eae188509ce7a1ec8e3f689 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sat, 2 Mar 2024 14:21:48 +0100 Subject: [PATCH] require Cython 3.0.3 at least, fixes #8133 The fix for the Python 3.12 memory leak issue was in Cython 3.0.3+. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9f58ed3c..70c8130f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ where = ["src"] "*" = ["*.c", "*.h", "*.pyx"] [build-system] -requires = ["setuptools", "wheel", "pkgconfig", "Cython>=3", "setuptools_scm[toml]>=6.2"] +requires = ["setuptools", "wheel", "pkgconfig", "Cython>=3.0.3", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" [tool.setuptools_scm]