From 173d73b7189e3b0d25cb079fa9f4bf7bdfa6fe60 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Wed, 26 May 2021 10:05:02 -0500 Subject: [PATCH] setup.py: Require numpy<1.21 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a25ffee..c4229f6 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( install_requires=[ "matplotlib>=3,<4", "networkx>=2,<3", - "numpy>=1,<2", + "numpy>=1,<1.21", "p_tqdm>=1,<2", "pandas>=1,<2", "pyomo>=5,<6",