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 0151c9a38f
commit 30ad61ae5a
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ where = ["src"]
"*" = ["*.c", "*.h", "*.pyx"]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel", "pkgconfig", "Cython>=3"]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel", "pkgconfig", "Cython>=3.0.3"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]