From c56e8297935650f57f5b33a98496191dad45d458 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Dec 2022 15:07:25 +0000 Subject: [PATCH] Update numpy requirement from ~=1.23.2 to >=1.23.2,<1.25.0 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.23.2...v1.24.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4b18add..30d0b5f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ "Development Status :: 3 - Alpha", ], install_requires=[ - "numpy~=1.23.2", + "numpy>=1.23.2,<1.25.0", "Pillow~=9.2.0", "setuptools~=65.3.0", "scipy~=1.9.1",