Skip to content

Commit 467278b

Browse files
authored
Merge pull request numpy#25818 from bartoli/1.26.x
MAINT: Propagate requirement of cython 0.29.34
2 parents 6ba1e5b + ae6c63d commit 467278b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

numpy/core/tests/test_cython.py

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

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ def generate_cython():
329329
else:
330330
# Note: keep in sync with that in pyproject.toml
331331
# Update for Python 3.11
332-
required_version = '0.29.30'
332+
required_version = '0.29.34'
333333

334334
if _pep440.parse(cython_version) < _pep440.Version(required_version):
335335
cython_path = Cython.__file__

0 commit comments

Comments
 (0)