From 02ff5f83a36868de159702de49906513711a5fa0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 14:15:44 +0000 Subject: [PATCH] MAINT: Update numpy requirement from <2,>=1.20.0 to >=1.20.0,<3 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.20.0...v2.0.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f7addd1a8..be6d1c3708 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,13 +32,13 @@ dependencies = [ "pydantic>=2.6.4,<2.8", "toml == 0.10.2", "Rtree >= 1.2.0", - "numpy>=1.20.0,<2", + "numpy>=1.20.0,<3", ] [project.optional-dependencies] tests = [ "matplotlib>=3.5.0,<3.10", - "numpy>=1.20.0,<2", + "numpy>=1.20.0,<3", "mock>=5.1.0,<5.2", "pandas>=1.1.0,<2.3", "pytest>=7.4.0,<8.3",