From 84e5db1bcc33891f8e4c11e0b0337b28a11a70b5 Mon Sep 17 00:00:00 2001 From: mvogt Date: Tue, 25 Jun 2024 15:33:11 +0200 Subject: [PATCH 1/2] limit version of scipy. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f0c9b1551..78819caf4 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ python_requires='>=3.8', install_requires=["pandas>=1.0", "networkx>=2.5", - "scipy", + "scipy<1.14", "numpy<2.0", "packaging", "tqdm", From f8ee5493703408730e54747e80b1853a773d78f4 Mon Sep 17 00:00:00 2001 From: mvogt Date: Tue, 25 Jun 2024 15:34:32 +0200 Subject: [PATCH 2/2] bump version. --- doc/conf.py | 2 +- pandapower/_version.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index ceb5e93d1..534e2db0e 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,7 +56,7 @@ # The short X.Y version. version = "2.14" # The full version, including alpha/beta/rc tags. -release = "2.14.8" +release = "2.14.9" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pandapower/_version.py b/pandapower/_version.py index 102962101..a631f068a 100644 --- a/pandapower/_version.py +++ b/pandapower/_version.py @@ -1,2 +1,2 @@ -__version__ = "2.14.8" +__version__ = "2.14.9" __format_version__ = "2.14.0" diff --git a/setup.py b/setup.py index 78819caf4..e303c4e00 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='pandapower', - version='2.14.8', + version='2.14.9', author='Leon Thurner, Alexander Scheidler', author_email='leon.thurner@retoflow.de, alexander.scheidler@iee.fraunhofer.de', description='An easy to use open source tool for power system modeling, analysis and optimization with a high degree of automation.',