This is an automated email from the ASF dual-hosted git repository.
tvalentyn pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new 9d2abcfa2ba Bump numpy versions (#37238)
9d2abcfa2ba is described below
commit 9d2abcfa2ba437b725f574dd740f8766c1ed6fc4
Author: Danny McCormick <[email protected]>
AuthorDate: Wed Jan 7 05:42:44 2026 -0500
Bump numpy versions (#37238)
---
sdks/python/pyproject.toml | 2 +-
sdks/python/setup.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sdks/python/pyproject.toml b/sdks/python/pyproject.toml
index 5adedb63a2c..c705dcb438c 100644
--- a/sdks/python/pyproject.toml
+++ b/sdks/python/pyproject.toml
@@ -27,7 +27,7 @@ requires = [
# Avoid https://github.com/pypa/virtualenv/issues/2006
"distlib==0.3.9",
# Numpy headers
- "numpy>=1.14.3,<2.4.0", # Update setup.py as well.
+ "numpy>=1.14.3,<2.5.0", # Update setup.py as well.
# having cython here will create wheels that are platform dependent.
"cython>=3.0,<4",
## deps for generating external transform wrappers:
diff --git a/sdks/python/setup.py b/sdks/python/setup.py
index c3217e1f0fe..261d079f146 100644
--- a/sdks/python/setup.py
+++ b/sdks/python/setup.py
@@ -387,7 +387,7 @@ if __name__ == '__main__':
'jsonpickle>=3.0.0,<4.0.0',
# numpy can have breaking changes in minor versions.
# Use a strict upper bound.
- 'numpy>=1.14.3,<2.4.0', # Update pyproject.toml as well.
+ 'numpy>=1.14.3,<2.5.0', # Update pyproject.toml as well.
'objsize>=0.6.1,<0.8.0',
'packaging>=22.0',
'pymongo>=3.8.0,<5.0.0',