Skip to content

Commit 9ae3a60

Browse files
authored
Set an upper bound for pyarrow version. (#918)
I'd set the upper bound for pyarrow version for now since we need to set an environment variable to work with pyarrow 0.15. apache/spark#26045: > Arrow 0.15.0 introduced a change in format which requires an environment variable to maintain compatibility.
1 parent a7fc8f8 commit 9ae3a60

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dependencies in Koalas
22
pandas>=0.23.2
3-
pyarrow>=0.10
3+
pyarrow>=0.10,<0.15
44
matplotlib>=3.0.0
55
numpy>=1.14
66

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
python_requires='>=3.5',
4747
install_requires=[
4848
'pandas>=0.23.2',
49-
'pyarrow>=0.10',
49+
'pyarrow>=0.10,<0.15',
5050
'numpy>=1.14',
5151
'matplotlib>=3.0.0',
5252
],

0 commit comments

Comments
 (0)