From 9be4b8c4fbf2909965707fcc5500314947a9645e Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Thu, 21 Sep 2023 10:44:03 +0900 Subject: [PATCH] Fix installation dependencies --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b2f590af4..773f4e7eb 100644 --- a/setup.py +++ b/setup.py @@ -56,8 +56,8 @@ }, python_requires='>=3.5,<3.11', install_requires=[ - 'pandas>=0.23.2', - 'pyarrow>=0.10', + 'pandas>=0.23.2,<2.0.0', + 'pyarrow>=0.10,<=12.0', 'numpy>=1.14', ], author="Databricks",