Skip to content

Commit 531cbab

Browse files
committed
Fix minor issues
1 parent 26eeeaf commit 531cbab

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies = [
2121
"highspy >= 1.7.2",
2222
"matplotlib >= 3.7.1",
2323
"networkx >= 3.1.0",
24-
"numpy == 2.2.0",
24+
"numpy >= 2.2.0",
2525
"pandas >= 2.1.1",
2626
"pmdarima >= 2.0.4",
2727
"scipy >= 1.11.3",

src/pownet/core/__init__.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
""" This is the core module.
2-
"""
1+
"""This is the core module."""
32

43
from .builder import ModelBuilder
54
from .input import SystemInput
@@ -8,3 +7,14 @@
87
from .record import SystemRecord
98
from .simulation import Simulator
109
from .data_processor import DataProcessor
10+
11+
__all__ = [
12+
"Simulator",
13+
"SystemInput",
14+
"OutputProcessor",
15+
"SystemRecord",
16+
"DataProcessor",
17+
"ModelBuilder",
18+
"Visualizer",
19+
"UserConstraint",
20+
]

0 commit comments

Comments
 (0)