summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/tests/test_cython.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/tests/test_cython.py b/numpy/core/tests/test_cython.py
index 92ef09c9b..63524b269 100644
--- a/numpy/core/tests/test_cython.py
+++ b/numpy/core/tests/test_cython.py
@@ -15,11 +15,11 @@ except ImportError:
else:
from distutils.version import LooseVersion
- # Cython 0.29.14 is required for Python 3.8 and there are
+ # Cython 0.29.21 is required for Python 3.9 and there are
# other fixes in the 0.29 series that are needed even for earlier
# Python versions.
# Note: keep in sync with the one in pyproject.toml
- required_version = LooseVersion("0.29.14")
+ required_version = LooseVersion("0.29.21")
if LooseVersion(cython_version) < required_version:
# too old or wrong cython, skip the test
cython = None