From 6a5c7fd611f9b7c97fc77f972ddc2ff6ed8f3f2a Mon Sep 17 00:00:00 2001 From: Florian Maurer Date: Thu, 20 Jun 2024 11:57:35 +0200 Subject: [PATCH] pin numpy to <2 version (#367) for now, pyomo does not work with numpy 2 and its optional linking dependency is not enforced. See here: https://github.com/Pyomo/pyomo/issues/3290#issuecomment-2178244357 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 21d715c0a..d471655ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ python = "^3.10" argcomplete = "^3.1.4" nest-asyncio = "^1.5.6" mango-agents-assume = "^1.1.1-8" +numpy = "^1.26.4" tqdm = "^4.64.1" python-dateutil = "^2.8.2" sqlalchemy = "^2.0.9"