From cc9695b8f1bb2c731206973503e9351da9ba91d5 Mon Sep 17 00:00:00 2001 From: SabineHaas Date: Tue, 20 Aug 2024 13:33:45 +0200 Subject: [PATCH 1/2] Fix: requires numpy <2.0.0 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7d943cb1..bb18a869 100644 --- a/setup.py +++ b/setup.py @@ -75,6 +75,7 @@ def read(*names, **kwargs): "oemof.network==0.5.0a4", # Temporal fix due to braking changes in 0.5.1 "paramiko", "toml", + "numpy<2.0.0", ], extras_require={ "cli": ["click"], From 6756f0a78ad6b76b7bc631e73c56e138a8d74847 Mon Sep 17 00:00:00 2001 From: Sabine Haas Date: Tue, 20 Aug 2024 14:00:20 +0200 Subject: [PATCH 2/2] Update setup.py Co-authored-by: Marie-Claire Gering <52790556+MaGering@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bb18a869..3ecd8dbe 100644 --- a/setup.py +++ b/setup.py @@ -75,7 +75,7 @@ def read(*names, **kwargs): "oemof.network==0.5.0a4", # Temporal fix due to braking changes in 0.5.1 "paramiko", "toml", - "numpy<2.0.0", + "numpy<2.0.0", # To be deleted with higher oemof.solph version ], extras_require={ "cli": ["click"],