This is an automated email from the ASF dual-hosted git repository.
gaborgsomogyi pushed a commit to branch release-2.0
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/release-2.0 by this push:
new a5f71c2473f [FLINK-38513][python]Fix pandas 2.3+ cp39 issue
a5f71c2473f is described below
commit a5f71c2473f419a1dcfd631aca63ab4eba334482
Author: Gabor Somogyi <[email protected]>
AuthorDate: Tue Oct 14 20:06:40 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 73b60fb1519..08b6a61b36a 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 5d512ca4faa..350c0fc43f9 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',