Skip to content

Commit 820a0ad

Browse files
[FLINK-38513][python]Fix pandas 2.3+ cp39 issue
1 parent 4d1a611 commit 820a0ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

flink-python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dev = [
3838
"python-dateutil>=2.8.0,<3",
3939
"cloudpickle~=2.2.0",
4040
"avro>=1.12.0",
41-
"pandas>=1.3.0",
41+
"pandas>=1.3.0,<2.3",
4242
"pyarrow>=5.0.0,<21.0.0",
4343
"pytz>=2018.3",
4444
"numpy>=1.22.4,<2.3.0",

flink-python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def extracted_output_files(base_dir, file_path, output_directory):
322322
'pytz>=2018.3', 'fastavro>=1.1.0,!=1.8.0', 'requests>=2.26.0',
323323
'protobuf>=3.19.0',
324324
'numpy>=1.22.4',
325-
'pandas>=1.3.0',
325+
'pandas>=1.3.0,<2.3', # FLINK-38513: 2.3+ drops cp39 wheels
326326
'pyarrow>=5.0.0,<21.0.0',
327327
'pemja>=0.5.5,<0.5.6;platform_system != "Windows"',
328328
'httplib2>=0.19.0',

0 commit comments

Comments
 (0)