From 85af51b7c198b775be176d8615f0020acd010835 Mon Sep 17 00:00:00 2001 From: Simon Bowly Date: Mon, 17 Jun 2024 20:48:24 +1000 Subject: [PATCH] Restrict numpy version to 1.x For now, we cannot use numpy 2.0 due to an incompatibility with the current gurobipy releases. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e56712ef..71b4ef8a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ classifiers = [ dependencies = [ "gurobipy[matrixapi]>=10.0.3", "gurobipy-pandas>=1.0.0", - "numpy", + "numpy<2", "pandas", "scipy>=1.8.0", ]