From 6129c9a56d52ebb060417cb397e0764cdd8791bc Mon Sep 17 00:00:00 2001 From: liferoad Date: Mon, 7 Oct 2024 11:05:34 -0400 Subject: [PATCH] allow numpy 2.1.x --- sdks/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 721cb4c1a8dd..6ce7cfdfd556 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -366,7 +366,7 @@ def get_portability_package_data(): 'jsonpickle>=3.0.0,<4.0.0', # numpy can have breaking changes in minor versions. # Use a strict upper bound. - 'numpy>=1.14.3,<1.27.0', # Update pyproject.toml as well. + 'numpy>=1.14.3,<2.2.0', # Update pyproject.toml as well. 'objsize>=0.6.1,<0.8.0', 'packaging>=22.0', 'pymongo>=3.8.0,<5.0.0',