From 7bf01ab2a591994387193daaadcce309f74efad9 Mon Sep 17 00:00:00 2001 From: Seb Bacon Date: Wed, 26 Jan 2022 10:11:30 +0000 Subject: [PATCH] fix: incompatible suitesparse version Currently-published wheels for 6.1.5 are build against an incompatible numpy --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index acdbc43..ce3871f 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ install_requires=[ "numpy<1.21", "numba", - "suitesparse-graphblas", + "suitesparse-graphblas<6.1.4", "scipy", "contextvars", "mmparse",