Skip to content

Commit 1e98b7d

Browse files
committed
Merge tag 'v1.6.2' into develop
2 parents 8d350cf + 615135c commit 1e98b7d

25 files changed

Lines changed: 2076 additions & 800 deletions

AUTHORS

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
Copyright (c) 2019-2025 by University of Kassel, TU Dortmund, RWTH Aachen University and Fraunhofer Institute for Energy Economics and Energy System Technology (IEE) Kassel and the following individual contributors list.
1+
Copyright (c) 2019-2026 by University of Kassel, TU Dortmund, RWTH Aachen University and Fraunhofer Institute for Energy Economics and Energy System Technology (IEE) Kassel and the following individual contributors list.
22
All rights reserved.
33

4+
* See simbench Contributors - https://github.com/e2nIEE/simbench/graphs/contributors
5+
6+
# simbench project Authors
47
Lead Developer:
58
- Steffen Meinecke
69

@@ -17,4 +20,6 @@ Coordination:
1720
- Lars-Peter Lauven
1821
- Tanja Kneiske
1922
- Albert Moser
20-
- Christian Rehtanz
23+
- Christian Rehtanz
24+
25+

CHANGELOG.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
Change Log
22
=============
33

4-
[x.x.x] - 20xx-xx-xx
4+
[1.6.2] - 2026-04-02
55
----------------------
6+
- [ADDED] python 3.13 support
7+
- [CHANGED] drop python 3.9 support
8+
- [ADDED] new load parameters at the pandapower network creation to fit to pandapower 3.2
69
- [CHANGED] extended the list of parameters (new in pandapower) that would be casted from NaN to True (without adaption in the converter function `csv_csv_data2pp()`) but should be False by default
710

811
[1.6.1] - 2024-04-13

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019-2025 by University of Kassel, TU Dortmund, RWTH Aachen University and Fraunhofer Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual contributors (see AUTHORS file for details).
1+
Copyright (c) 2019-2026 by University of Kassel, TU Dortmund, RWTH Aachen University and Fraunhofer Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual contributors (see AUTHORS file for details).
22
All rights reserved.
33

44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "simbench"
7-
version = "1.6.1"
7+
version = "1.6.2"
88
authors = [
99
{ name = "Steffen Meinecke"}
1010
]

simbench/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2021 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
1+
# Copyright (c) 2019-2026 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
22
# Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual
33
# contributors (see AUTHORS file for details). All rights reserved.
44

simbench/converter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2021 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
1+
# Copyright (c) 2019-2026 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
22
# Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual
33
# contributors (see AUTHORS file for details). All rights reserved.
44

simbench/converter/auxiliary.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Copyright (c) 2019-2025 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
1+
# Copyright (c) 2019-2026 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
22
# Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual
33
# contributors (see AUTHORS file for details). All rights reserved.
44

55
import numpy as np
66
import pandas as pd
77
import datetime as dt
88
from packaging import version
9+
910
try:
1011
from pandapower.toolbox.comparison import compare_arrays
1112
except ImportError:

simbench/converter/csv_data_manipulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2019-2025 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
1+
# Copyright (c) 2019-2026 by University of Kassel, Tu Dortmund, RWTH Aachen University and Fraunhofer
22
# Institute for Energy Economics and Energy System Technology (IEE) Kassel and individual
33
# contributors (see AUTHORS file for details). All rights reserved.
44

0 commit comments

Comments
 (0)