From eebd3de026763920ac0f509f5c4a7a25aa4410e8 Mon Sep 17 00:00:00 2001 From: Bhargav Dodla <13788369+EXPEbdodla@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:07:00 -0700 Subject: [PATCH] fix: Pyarrow substrait module is available from 9.0.0 only (#145) * fix: pyarrow.substrait module is available from 9.0.0 only --------- Co-authored-by: Bhargav Dodla --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b04ad502d5..1fda1064ce 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ "mmh3", "numpy>=1.22,<2", "pandas>=1.4.3,<3", - "pyarrow>=4", + "pyarrow>=9.0.0", "pydantic>=2.0.0", "pygments>=2.12.0,<3", "PyYAML>=5.4.0,<7",