From 38c12a6afd153caee8079e0969735f11dbfc24e4 Mon Sep 17 00:00:00 2001 From: Jrenaud-Desk Date: Mon, 25 Sep 2023 14:09:05 -0400 Subject: [PATCH] Removing support for numpy 1.26 for now --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 46ecaa8..1b31dbf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,9 +7,9 @@ authors= [ ] requires-python = ">=3.8,<3.12" dependencies = [ - 'numba>=0.54.1', - 'numpy>=1.22', - 'scipy>=1.9.3' + 'numba >= 0.54.1', + 'numpy >= 1.22, <1.26', + 'scipy >= 1.9.3' ] license = {file = "LICENSE.md"} readme = "README.md" @@ -59,7 +59,7 @@ dev = [ [build-system] requires = [ 'setuptools>=64.0.0', - 'numpy>=1.22', + 'numpy >= 1.22, <1.26', 'cython>=3.0.0', 'wheel>=0.38' ]