Skip to content

Commit e7983a2

Browse files
Update dependency numpy to v2.3.0 (#3242)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 4f16ce0 commit e7983a2

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
@@ -26,8 +26,8 @@ pandas==2.3.0; python_version < '3.7'
2626
pyarrow==20.0.0; python_version >= '3.7'
2727
pyarrow==20.0.0; python_version < '3.7'
2828
pytz>=2018.3
29-
numpy==2.2.6; python_version >= '3.7'
30-
numpy==2.2.6; python_version < '3.7'
29+
numpy==2.3.0; python_version >= '3.7'
30+
numpy==2.3.0; python_version < '3.7'
3131
fastavro==1.11.1
3232
grpcio==1.72.1
3333
grpcio-tools==1.72.1

flink-python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,12 +318,12 @@ def extracted_output_files(base_dir, file_path, output_directory):
318318

319319
if sys.version_info < (3, 7):
320320
# python 3.6 upper and lower limit
321-
install_requires.append('numpy>=2,<2.3')
321+
install_requires.append('numpy>=2,<2.4')
322322
install_requires.append('pandas>=2,<2.4')
323323
install_requires.append('pyarrow>=20.0.0,<20.1.0')
324324
else:
325325
# python 3.7, 3.8 and 3.9 upper limit and M1 chip lower limit,
326-
install_requires.append('numpy>=2.2.0,<2.3.0')
326+
install_requires.append('numpy>=2.3.0,<2.4.0')
327327
install_requires.append('pandas>=2.3.0,<2.4.0')
328328
install_requires.append('pyarrow>=20.0.0,<20.1.0')
329329

0 commit comments

Comments
 (0)