diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 858c9520e..932e7c643 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,12 @@ Change Log ============= +[2.14.10] - 2024-07-08 +------------------------------- +- [FIXED] geopandas version + +[2.14.9] - 2024-06-25 +------------------------------- +- [FIXED] scipy version [2.14.8] - 2024-06-19 ------------------------------- diff --git a/doc/conf.py b/doc/conf.py index 534e2db0e..a51db903a 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.9" +release = "2.14.10" # 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 a631f068a..af8265f54 100644 --- a/pandapower/_version.py +++ b/pandapower/_version.py @@ -1,2 +1,2 @@ -__version__ = "2.14.9" +__version__ = "2.14.10" __format_version__ = "2.14.0" diff --git a/setup.py b/setup.py index e303c4e00..247869323 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='pandapower', - version='2.14.9', + version='2.14.11', 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.', @@ -52,19 +52,19 @@ "deepdiff"], extras_require={ "docs": ["numpydoc", "sphinx", "sphinx_rtd_theme"], - "plotting": ["plotly", "matplotlib<3.9", "igraph", "geopandas", "geojson"], + "plotting": ["plotly", "matplotlib<3.9", "igraph", "geopandas<1.0", "geojson"], # "shapely", "pyproj" are dependencies of geopandas and so already available; # "base64", "hashlib", "zlib" produce installing problems, so they are not included "test": ["pytest", "pytest-xdist"], - "performance": ["ortools", "numba", "lightsim2grid"], + "performance": ["ortools", "numba", "lightsim2grid~=0.8.1"], "pgm": ["power-grid-model-io"], - "fileio": ["xlsxwriter", "openpyxl", "cryptography", "geopandas", "psycopg2"], + "fileio": ["xlsxwriter", "openpyxl", "cryptography", "geopandas<1.0", "psycopg2"], # "fiona" is a depedency of geopandas and so already available "converter": ["matpowercaseframes"], "all": ["numpydoc", "sphinx", "sphinx_rtd_theme", - "plotly>=3.1.1", "matplotlib<3.9", "igraph", "geopandas", "geojson", + "plotly>=3.1.1", "matplotlib<3.9", "igraph", "geopandas<1.0", "geojson", "pytest~=8.1", "pytest-xdist", - "ortools", # lightsim2grid, + "ortools", "lightsim2grid~=0.8.1", "xlsxwriter", "openpyxl", "cryptography", "psycopg2", # for PostgreSQL I/O "matpowercaseframes",