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

gaborgsomogyi 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 742c277b7b1 [FLINK-38513][python]Fix pandas 2.3+ cp39 issue
742c277b7b1 is described below

commit 742c277b7b1f18521f0daa7332c65908c8c8b434
Author: Gabor Somogyi <[email protected]>
AuthorDate: Tue Oct 14 20:06:20 2025 +0200

    [FLINK-38513][python]Fix pandas 2.3+ cp39 issue
---
 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 1516ded5b71..04eabf8d6dd 100755
--- a/flink-python/dev/dev-requirements.txt
+++ b/flink-python/dev/dev-requirements.txt
@@ -21,7 +21,7 @@ py4j==0.10.9.7
 python-dateutil>=2.8.0,<3
 cloudpickle~=2.2.0
 avro>=1.12.0
-pandas>=1.3.0
+pandas>=1.3.0,<2.3
 pyarrow>=5.0.0,<21.0.0
 pytz>=2018.3
 numpy>=1.22.4,<2.3.0
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 07699638e61..038a7e7c7cc 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -322,7 +322,7 @@ try:
                         'pytz>=2018.3', 'fastavro>=1.1.0,!=1.8.0', 
'requests>=2.26.0',
                         'protobuf>=3.19.0',
                         'numpy>=1.22.4',
-                        'pandas>=1.3.0',
+                        'pandas>=1.3.0,<2.3',  # FLINK-38513: 2.3+ drops cp39 
wheels
                         'pyarrow>=5.0.0,<21.0.0',
                         'pemja>=0.5.5,<0.5.6;platform_system != "Windows"',
                         'httplib2>=0.19.0',

Reply via email to