From c7f983e612718f0aa6392e746f6629534b95bcad Mon Sep 17 00:00:00 2001 From: Simon Bowly Date: Mon, 17 Jun 2024 20:52:42 +1000 Subject: [PATCH] Restrict numpy version to 1.x (#144) Closes #143 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", ]