From 1f893cdf876162b39ca34f08bec5ff9e43bb2b00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Apr 2025 04:49:00 +0000 Subject: [PATCH] Update pyarrow requirement in /bindings/python Updates the requirements on [pyarrow](https://github.com/apache/arrow) to permit the latest version. - [Release notes](https://github.com/apache/arrow/releases) - [Commits](https://github.com/apache/arrow/compare/apache-arrow-19.0.0...apache-arrow-20.0.0) --- updated-dependencies: - dependency-name: pyarrow dependency-version: 20.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bindings/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index ec4cf490..923d7629 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -6,7 +6,7 @@ requires = [ # Needed for numpy headers. "numpy>=2.0", # Must be kept in sync with "project.dependencies" below. - "pyarrow>=19.0,<19.1.0", + "pyarrow>=19.0,<20.1.0", ] [project]