Skip to content

Commit

Permalink
PKG: Set max pin for Cython (#35396)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
TomAugspurger committed Jul 23, 2020
1 parent 06e2793 commit d3343d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -4,7 +4,7 @@
requires = [
"setuptools",
"wheel",
"Cython>=0.29.16", # Note: sync with setup.py
"Cython>=0.29.16,<3", # Note: sync with setup.py
"numpy==1.15.4; python_version=='3.6' and platform_system!='AIX'",
"numpy==1.15.4; python_version=='3.7' and platform_system!='AIX'",
"numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'",
Expand Down

0 comments on commit d3343d9

Please sign in to comment.