summaryrefslogtreecommitdiff
path: root/tools/cythonize.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/cythonize.py')
-rwxr-xr-xtools/cythonize.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/cythonize.py b/tools/cythonize.py
index 06cf54c9a..8370574a1 100755
--- a/tools/cythonize.py
+++ b/tools/cythonize.py
@@ -72,7 +72,8 @@ def process_pyx(fromfile, tofile):
# other fixes in the 0.29 series that are needed even for earlier
# Python versions.
# Note: keep in sync with that in pyproject.toml
- required_version = LooseVersion('0.29.21')
+ # Update for Python 3.10
+ required_version = LooseVersion('0.29.24')
if LooseVersion(cython_version) < required_version:
cython_path = Cython.__file__