From 7edcace3250c756a9590a5b36bbd93277a0d40ea Mon Sep 17 00:00:00 2001 From: ColinLee Date: Fri, 3 Apr 2026 13:44:43 +0800 Subject: [PATCH] fix pyarrow version. --- python/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 8b34924ad..476f91231 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -38,7 +38,8 @@ maintainers = [ dependencies = [ "numpy>=2.0.0,<3", "pandas>=2.0", - "pyarrow>=16.0" + "pyarrow>=16.0,<18; python_version<'3.10'", + "pyarrow>=18.0,<20; python_version>='3.10'" ] [project.urls]