From 96c68e66c84ea035de39588044fbf0299d9bc7af Mon Sep 17 00:00:00 2001 From: Gioele Molinari <63927701+gioelemo@users.noreply.github.com> Date: Tue, 31 Mar 2026 13:06:01 +0200 Subject: [PATCH] Update pyarrow dependency version constraint Removed upper limit on pyarrow version in dependencies. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b726314e..719f779b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "datasets[vision] >= 3.1.0", # imports modules with image features "pandas >= 2.2.3", "matplotlib >= 3.9.3", - "pyarrow >= 15.0.0, < 20.0.0", # HF datasets not migrated to pyarrow 20.0.0 yet + "pyarrow >= 15.0.0", ] [project.optional-dependencies]