File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Building NumPy requires the following installed software:
20
20
e.g., on Debian/Ubuntu one needs to install both `python3 ` and
21
21
`python3-dev `. On Windows and macOS this is normally not an issue.
22
22
23
- 2) Cython >= 0.29.28
23
+ 2) Cython >= 0.29.30
24
24
25
25
3) pytest __ (optional) 1.15 or later
26
26
Original file line number Diff line number Diff line change 15
15
else :
16
16
from numpy .compat import _pep440
17
17
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
19
19
# other fixes in the 0.29 series that are needed even for earlier
20
20
# Python versions.
21
21
# Note: keep in sync with the one in pyproject.toml
22
- required_version = "0.29.24 "
22
+ required_version = "0.29.30 "
23
23
if _pep440 .parse (cython_version ) < _pep440 .Version (required_version ):
24
24
# too old or wrong cython, skip the test
25
25
cython = None
Original file line number Diff line number Diff line change 32
32
cython = None
33
33
else :
34
34
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
36
36
# other fixes in the 0.29 series that are needed even for earlier
37
37
# Python versions.
38
38
# Note: keep in sync with the one in pyproject.toml
39
- required_version = '0.29.24 '
39
+ required_version = '0.29.30 '
40
40
if _pep440 .parse (cython_version ) < _pep440 .Version (required_version ):
41
41
# too old or wrong cython, skip the test
42
42
cython = None
You can’t perform that action at this time.
0 commit comments