Skip to content

Commit 655109b

Browse files
committed
Updated examples and requirements.txt
1 parent 752f22e commit 655109b

5 files changed

+11
-11
lines changed

1-buses_min_max_v.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
script_path = os.path.dirname(os.path.abspath(__file__))
1313

14-
dss_file = pathlib.Path(script_path).joinpath("../feeders", "123Bus", "IEEE123Master.dss")
14+
dss_file = pathlib.Path(script_path).joinpath("feeders", "123Bus", "IEEE123Master.dss")
1515

1616
dss = py_dss_interface.DSS() # using OpenDSS provided in the package
1717
dss.text(f"compile [{dss_file}]")

2-futher_3ph_bus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
script_path = os.path.dirname(os.path.abspath(__file__))
1212

13-
dss_file = pathlib.Path(script_path).joinpath("../feeders", "123Bus", "IEEE123Master.dss")
13+
dss_file = pathlib.Path(script_path).joinpath("feeders", "123Bus", "IEEE123Master.dss")
1414

1515
dss = py_dss_interface.DSS() # using OpenDSS provided in the package
1616
dss.text(f"compile [{dss_file}]")

3-max_load_mult.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
script_path = os.path.dirname(os.path.abspath(__file__))
1212

13-
dss_file = pathlib.Path(script_path).joinpath("../feeders", "123Bus", "IEEE123Master.dss")
13+
dss_file = pathlib.Path(script_path).joinpath("feeders", "123Bus", "IEEE123Master.dss")
1414

1515
dss = py_dss_interface.DSS() # using OpenDSS provided in the package
1616

4-line_dataframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
script_path = os.path.dirname(os.path.abspath(__file__))
1313

14-
dss_file = pathlib.Path(script_path).joinpath("../feeders", "123Bus", "IEEE123Master.dss")
14+
dss_file = pathlib.Path(script_path).joinpath("feeders", "123Bus", "IEEE123Master.dss")
1515

1616
dss = py_dss_interface.DSS()
1717
dss.text(f"compile [{dss_file}]")

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
colorama==0.4.6
2-
comtypes==1.1.14
2+
comtypes==1.4.4
33
contourpy==1.2.0
44
cycler==0.12.1
55
fonttools==4.46.0
66
importlib-resources==6.1.1
77
kiwisolver==1.4.5
88
matplotlib==3.8.2
9-
numpy==1.24.3
10-
packaging==23.2
11-
pandas==2.0.1
9+
numpy==1.26.4
10+
packaging==24.1
11+
pandas==2.2.2
1212
Pillow==10.1.0
13-
py-dss-interface==2.0.2
13+
py-dss-interface==2.0.4
1414
pyparsing==3.1.1
15-
python-dateutil==2.8.2
16-
pytz==2023.3
15+
python-dateutil==2.9.0.post0
16+
pytz==2024.1
1717
six==1.16.0
1818
tzdata==2023.3
1919
zipp==3.17.0

0 commit comments

Comments
 (0)