From a0fc9af0517b9df536031502acef19737775ba5e Mon Sep 17 00:00:00 2001 From: HyukjinKwon Date: Thu, 14 Nov 2019 13:54:26 +0900 Subject: [PATCH] Fix setup.py to officially support PyArrow 0.15.1+ --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1e4e69f836..8767d75218 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ python_requires='>=3.5', install_requires=[ 'pandas>=0.23.2', - 'pyarrow>=0.10,<0.15', + 'pyarrow>=0.10', 'numpy>=1.14', 'matplotlib>=3.0.0', ],