This is an automated email from the ASF dual-hosted git repository.
JingsongLi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 813616e3eb [Python] Exclude pyarrow 19.0.0 due to Parquet
SizeStatistics regression (#8409)
813616e3eb is described below
commit 813616e3ebc04d19c9d82df22465bd792f73632a
Author: zhoulii <[email protected]>
AuthorDate: Wed Jul 1 17:59:20 2026 +0800
[Python] Exclude pyarrow 19.0.0 due to Parquet SizeStatistics regression
(#8409)
---
paimon-python/dev/requirements.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/paimon-python/dev/requirements.txt
b/paimon-python/dev/requirements.txt
index 49cdfef034..0bd9f01b76 100644
--- a/paimon-python/dev/requirements.txt
+++ b/paimon-python/dev/requirements.txt
@@ -29,7 +29,7 @@ polars>=0.9,<1; python_version<"3.8"
polars>=1,<2; python_version=="3.8"
polars>=1.32,<2; python_version>="3.9"
pyarrow>=6,<7; python_version < "3.8"
-pyarrow>=16,<20; python_version >= "3.8"
+pyarrow>=16,!=19.0.0,<20; python_version >= "3.8"
pyroaring<=0.3.3; python_version < "3.7"
pyroaring<=0.4.5; python_version == "3.7"
pyroaring>=1.0.0; python_version >= "3.8"