From e88ad544decff55535643092eca78812b398fa66 Mon Sep 17 00:00:00 2001 From: james <81617086+je-cook@users.noreply.github.com> Date: Wed, 27 Sep 2023 11:27:17 +0100 Subject: [PATCH] Allow numpy>=1.23 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 39ab315a..dbda262c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ mkdocs-material>=4.6.3 mkdocs-git-revision-date-localized-plugin >= 1.2 mkdocs-glightbox >= 0.3.4 pymdown-extensions>=6.3 -numpy>=1.19.0,<=1.21.5 +numpy>=1.19.0,!=1.22,>=1.23.0 scipy>=0.19.1 matplotlib>=2.1.1 pillow>=5.1.0 diff --git a/setup.py b/setup.py index 983ae4e1..474586ba 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ }, "test_suite": "pytest", "install_requires": [ - "numpy>=1.19.0,<1.22.1", + "numpy>=1.19.0,!=1.22,>=1.23.0", "scipy>=0.19.1", "importlib-resources ; python_version<'3.9'", "pandas",