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+.
This commit is contained in:
Thomas Waldmann 2024-03-02 14:21:48 +01:00
parent a507a2cb3b
commit 03e964271e
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 1 additions and 1 deletions

View File

@ -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]