From fab652e06de71daeb112f9dd8a5178b95d7a1eaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Dec 2022 18:04:59 +0000 Subject: [PATCH] Update numpy requirement from <1.23 to <1.25 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/v0.2.0...v1.24.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index be9b1ed..19bf27f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -numpy<1.23 +numpy<1.25 matplotlib ipython numba<0.57 diff --git a/setup.py b/setup.py index 1d689ee..9856b7d 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ packages=['wendy'], package_data={"": ["README.md","LICENSE"]}, include_package_data=True, - install_requires=['numpy<1.23','numba<0.57'], + install_requires=['numpy<1.25','numba<0.57'], ext_modules=[Extension('wendy_c', sources=['wendy/wendy.c','wendy/bst.c', 'wendy/parallel_sort.c'],