From 818d07e6f6f0e56054a759307b803b7f5f2148f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 18:26:20 +0000 Subject: [PATCH] Update numpy requirement from <2.0.0 to <3.0.0 in /mlos_core Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.24.0...v2.0.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- mlos_core/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlos_core/setup.py b/mlos_core/setup.py index e4c792e270..a30c8cdc0f 100644 --- a/mlos_core/setup.py +++ b/mlos_core/setup.py @@ -93,7 +93,7 @@ def _get_long_desc_from_readme(base_url: str) -> dict: "joblib>=1.1.1", "scipy>=1.3.2", "numpy>=1.24", - "numpy<2.0.0", # FIXME: https://github.com/numpy/numpy/issues/26710 + "numpy<3.0.0", # FIXME: https://github.com/numpy/numpy/issues/26710 'pandas >= 2.2.0;python_version>="3.9"', 'Bottleneck > 1.3.5;python_version>="3.9"', 'pandas >= 1.0.3;python_version<"3.9"',