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

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


The following commit(s) were added to refs/heads/release-1.20 by this push:
     new a00fa8f85fb [FLINK-38513][python]Fix pandas 2.3+ cp39 issue
a00fa8f85fb is described below

commit a00fa8f85fb871aac61ab375c2bf9e8805176ed0
Author: Gabor Somogyi <[email protected]>
AuthorDate: Tue Oct 14 20:06:55 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 7cda0736850..3707dcee192 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-python3>=1.8.1,!=1.9.2
-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 e852d847772..4eb4c2401b8 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