We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a5815 commit c9a0567Copy full SHA for c9a0567
setup.py
@@ -47,13 +47,10 @@
47
],
48
"pandas": ["pandas>=0.17.1"],
49
# Exclude PyArrow dependency from Windows Python 2.7.
50
- 'pyarrow: platform_system == "Windows"': [
51
- "pyarrow>=1.0.0, <2.0dev; python_version>='3.5'",
52
- ],
53
- 'pyarrow: platform_system != "Windows"': [
54
+ "pyarrow": [
+ "pyarrow >= 1.0.0, < 2.0dev; python_version >= '3.5'",
55
# Pyarrow >= 0.17.0 is not compatible with Python 2 anymore.
56
- "pyarrow < 0.17.0; python_version < '3.0'",
+ "pyarrow < 0.17.0; python_version < '3.0' and platform_system != 'Windows'",
57
58
"tqdm": ["tqdm >= 4.0.0, <5.0.0dev"],
59
"fastparquet": [
0 commit comments