From 6c6800ed041b32a85d7dbf498c230d80b64f7fca Mon Sep 17 00:00:00 2001 From: zdelrosario Date: Thu, 1 Aug 2024 09:01:42 -0400 Subject: [PATCH] fix bin incompatibility ValueError from numpy 2.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 951ada7..22fc447 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ python_requires=">=3.8, <3.10", install_requires=[ "matplotlib", - "numpy>=1.15", + "numpy>=1.15,<2.0", "scipy>=1.10", "pandas<=1.5.3", "plotnine>=0.8.0",