Skip to content

Commit 8e30b8c

Browse files
Update dependency pyarrow to v19 (#2831)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 5c984d7 commit 8e30b8c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

flink-python/dev/dev-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ cloudpickle==3.1.1
2323
avro-python3==1.10.2
2424
pandas==2.2.3; python_version >= '3.7'
2525
pandas==2.2.3; python_version < '3.7'
26-
pyarrow==18.1.0; python_version >= '3.7'
27-
pyarrow==18.1.0; python_version < '3.7'
26+
pyarrow==19.0.0; python_version >= '3.7'
27+
pyarrow==19.0.0; python_version < '3.7'
2828
pytz>=2018.3
2929
numpy==2.2.1; python_version >= '3.7'
3030
numpy==2.2.1; python_version < '3.7'

flink-python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,12 +320,12 @@ def extracted_output_files(base_dir, file_path, output_directory):
320320
# python 3.6 upper and lower limit
321321
install_requires.append('numpy>=2,<2.3')
322322
install_requires.append('pandas>=2,<2.3')
323-
install_requires.append('pyarrow>=18.1.0,<18.2.0')
323+
install_requires.append('pyarrow>=19.0.0,<19.1.0')
324324
else:
325325
# python 3.7, 3.8 and 3.9 upper limit and M1 chip lower limit,
326326
install_requires.append('numpy>=2.2.0,<2.3.0')
327327
install_requires.append('pandas>=2.2.0,<2.3.0')
328-
install_requires.append('pyarrow>=18.1.0,<18.2.0')
328+
install_requires.append('pyarrow>=19.0.0,<19.1.0')
329329

330330
setup(
331331
name='apache-flink',

0 commit comments

Comments
 (0)