Skip to content
Permalink
Browse files
fix: rationalize platform constraints for 'pyarrow' extra (#235)
Release-As: 1.27.2
  • Loading branch information
tseaver committed Aug 18, 2020
1 parent 06a5815 commit c9a0567
Showing 1 changed file with 3 additions and 6 deletions.
@@ -47,13 +47,10 @@
],
"pandas": ["pandas>=0.17.1"],
# Exclude PyArrow dependency from Windows Python 2.7.
'pyarrow: platform_system == "Windows"': [
"pyarrow>=1.0.0, <2.0dev; python_version>='3.5'",
],
'pyarrow: platform_system != "Windows"': [
"pyarrow>=1.0.0, <2.0dev; python_version>='3.5'",
"pyarrow": [
"pyarrow >= 1.0.0, < 2.0dev; python_version >= '3.5'",
# Pyarrow >= 0.17.0 is not compatible with Python 2 anymore.
"pyarrow < 0.17.0; python_version < '3.0'",
"pyarrow < 0.17.0; python_version < '3.0' and platform_system != 'Windows'",
],
"tqdm": ["tqdm >= 4.0.0, <5.0.0dev"],
"fastparquet": [

0 comments on commit c9a0567

Please sign in to comment.