This is an automated email from the ASF dual-hosted git repository.
gaborgsomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new 820a0ad5d96 [FLINK-38513][python]Fix pandas 2.3+ cp39 issue
820a0ad5d96 is described below
commit 820a0ad5d96ddd5db991027c2fb7e141001d2c3c
Author: Gabor Somogyi <[email protected]>
AuthorDate: Tue Oct 14 20:06:01 2025 +0200
[FLINK-38513][python]Fix pandas 2.3+ cp39 issue
---
flink-python/pyproject.toml | 2 +-
flink-python/setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/flink-python/pyproject.toml b/flink-python/pyproject.toml
index 3ffc01ff89e..836b5f77127 100644
--- a/flink-python/pyproject.toml
+++ b/flink-python/pyproject.toml
@@ -38,7 +38,7 @@ dev = [
"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',