From 155cc7077845020063b4e10b0c80b19f59bc39a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Sch=C3=B6nfeldt?= Date: Fri, 21 Jun 2024 18:26:43 +0200 Subject: [PATCH] Release 0.5.3a2 This alpha in particular pins numpy to < 2.0.0, so that Pyomo works. --- docs/whatsnew/v0-5-3.rst | 3 +++ src/oemof/solph/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/whatsnew/v0-5-3.rst b/docs/whatsnew/v0-5-3.rst index 0ca43fc7d..8c656ac09 100644 --- a/docs/whatsnew/v0-5-3.rst +++ b/docs/whatsnew/v0-5-3.rst @@ -39,6 +39,9 @@ Other changes Known issues ############ +* Incompatible to numpy >= 2.0.0. This is because of Pyomo, but we have to + enforce a lower version in our package. + Contributors ############ diff --git a/src/oemof/solph/__init__.py b/src/oemof/solph/__init__.py index d27c66140..c9f5e22cf 100644 --- a/src/oemof/solph/__init__.py +++ b/src/oemof/solph/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3a1" +__version__ = "0.5.3a2" from . import buses from . import components