Skip to content

Commit d3343d9

Browse files
PKG: Set max pin for Cython (#35396)
We know that pandas doesn't work with Cython 3.0 (#34213, #34014) This sets the maximum supported version of Cython in our pyproject.toml to ensure that pandas 1.1.0 can continue to be built from source without Cython pre-installed after Cython 3.0 is released.
1 parent 06e2793 commit d3343d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
requires = [
55
"setuptools",
66
"wheel",
7-
"Cython>=0.29.16", # Note: sync with setup.py
7+
"Cython>=0.29.16,<3", # Note: sync with setup.py
88
"numpy==1.15.4; python_version=='3.6' and platform_system!='AIX'",
99
"numpy==1.15.4; python_version=='3.7' and platform_system!='AIX'",
1010
"numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'",

0 commit comments

Comments
 (0)