This is an automated email from the ASF dual-hosted git repository.

ron pushed a commit to branch release-2.1
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-2.1 by this push:
     new 8d8fdb88734 [FLINK-38121][python] Limit the version of pyarrow to 
<21.0.0 (#26815)
8d8fdb88734 is described below

commit 8d8fdb887340d16c21ee456704f82876cb05a2fc
Author: Dian Fu <dia...@apache.org>
AuthorDate: Mon Jul 21 19:19:31 2025 +0800

    [FLINK-38121][python] Limit the version of pyarrow to <21.0.0 (#26815)
---
 flink-python/dev/dev-requirements.txt | 2 +-
 flink-python/setup.py                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/flink-python/dev/dev-requirements.txt 
b/flink-python/dev/dev-requirements.txt
index 4da2ba7f210..cc2ed521102 100755
--- a/flink-python/dev/dev-requirements.txt
+++ b/flink-python/dev/dev-requirements.txt
@@ -22,7 +22,7 @@ python-dateutil>=2.8.0,<3
 cloudpickle~=2.2.0
 avro>=1.12.0
 pandas>=1.3.0
-pyarrow>=5.0.0
+pyarrow>=5.0.0,<21.0.0
 pytz>=2018.3
 numpy>=1.22.4,<2.3.0
 fastavro>=1.1.0,!=1.8.0
diff --git a/flink-python/setup.py b/flink-python/setup.py
index be2975dc694..2526f62cd95 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -323,7 +323,7 @@ try:
                         'protobuf>=3.19.0',
                         'numpy>=1.22.4',
                         'pandas>=1.3.0',
-                        'pyarrow>=5.0.0',
+                        'pyarrow>=5.0.0,<21.0.0',
                         'pemja>=0.5.0,<0.5.4;platform_system != "Windows"',
                         'httplib2>=0.19.0',
                         'ruamel.yaml>=0.18.4',

Reply via email to