Skip to content

Commit dd03f4f

Browse files
authored
Merge pull request numpy#21545 from EwoutH/cython-0.29.30
Tests/Docs: Update tests to Cython 0.29.30, mention in docs
2 parents bcdecb3 + ea18bb2 commit dd03f4f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

INSTALL.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Building NumPy requires the following installed software:
2020
e.g., on Debian/Ubuntu one needs to install both `python3` and
2121
`python3-dev`. On Windows and macOS this is normally not an issue.
2222

23-
2) Cython >= 0.29.28
23+
2) Cython >= 0.29.30
2424

2525
3) pytest__ (optional) 1.15 or later
2626

numpy/core/tests/test_cython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
else:
1616
from numpy.compat import _pep440
1717

18-
# Cython 0.29.24 is required for Python 3.10 and there are
18+
# Cython 0.29.30 is required for Python 3.11 and there are
1919
# other fixes in the 0.29 series that are needed even for earlier
2020
# Python versions.
2121
# Note: keep in sync with the one in pyproject.toml
22-
required_version = "0.29.24"
22+
required_version = "0.29.30"
2323
if _pep440.parse(cython_version) < _pep440.Version(required_version):
2424
# too old or wrong cython, skip the test
2525
cython = None

numpy/random/tests/test_extending.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
cython = None
3333
else:
3434
from numpy.compat import _pep440
35-
# Cython 0.29.24 is required for Python 3.10 and there are
35+
# Cython 0.29.30 is required for Python 3.11 and there are
3636
# other fixes in the 0.29 series that are needed even for earlier
3737
# Python versions.
3838
# Note: keep in sync with the one in pyproject.toml
39-
required_version = '0.29.24'
39+
required_version = '0.29.30'
4040
if _pep440.parse(cython_version) < _pep440.Version(required_version):
4141
# too old or wrong cython, skip the test
4242
cython = None

0 commit comments

Comments
 (0)