From 5fd2bfcd732b9c8d6ed8bbe5f7545591df1efa52 Mon Sep 17 00:00:00 2001 From: Nick Sullivan Date: Fri, 19 Jan 2024 17:19:53 -0500 Subject: [PATCH] fix: remove nupy min version dependency I'm not sure why numpy>=1.24.4 would limit 1.25.1 (as seen in the build system), but trying this. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5710c8e..bbfce75 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # TODO: Move requirements to requirements.txt requirements = [ # basic - 'numpy>=1.24.4', + 'numpy', 'toolz', # dask installation failing without this 'cytoolz', # dask installation failing without this 'dask>=2.20.0',