Skip to content

Commit ebcc27b

Browse files
committed
Merge branch 'hotfix/numpy2_release'
2 parents f973e00 + 2c40bb9 commit ebcc27b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
=============
33

4+
[2.14.8] - 2024-06-19
5+
-------------------------------
6+
- [FIXED] numpy version
7+
48
[2.14.7] - 2024-06-14
59
-------------------------------
610
- [FIXED] read the docs configuration

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
# The short X.Y version.
5757
version = "2.14"
5858
# The full version, including alpha/beta/rc tags.
59-
release = "2.14.7"
59+
release = "2.14.8"
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

pandapower/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2.14.7"
1+
__version__ = "2.14.8"
22
__format_version__ = "2.14.0"

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name='pandapower',
37-
version='2.14.7',
37+
version='2.14.8',
3838
author='Leon Thurner, Alexander Scheidler',
3939
4040
description='An easy to use open source tool for power system modeling, analysis and optimization with a high degree of automation.',
@@ -46,7 +46,7 @@
4646
install_requires=["pandas>=1.0",
4747
"networkx>=2.5",
4848
"scipy",
49-
"numpy",
49+
"numpy<2.0",
5050
"packaging",
5151
"tqdm",
5252
"deepdiff"],

0 commit comments

Comments
 (0)