Skip to content

Commit d077acd

Browse files
authored
Merge pull request #17 from acep-uaf/quickfix
small fix
2 parents c8a88ad + 289a948 commit d077acd

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ dependencies = [
1515
"scipy==1.7.3",
1616
"pandas==1.3.5",
1717
"matplotlib==3.5.3",
18+
"matplotlib-inline==0.1.6",
1819
"pypsa==0.20.1",
1920
"grg-pssedata==0.1.4",
2021
"networkx==2.6.3",
2122
"pyomo==6.4.2",
2223
"tqdm",
2324
"jupyter",
2425
"mkdocstrings-python"
25-
2626
]
2727
classifiers = [
2828
"Programming Language :: Python :: 3",

src/wecgrid/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
Email: barajale@oregonstate.edu
77
"""
88

9+
__version__ = "1.0.0"
10+
911
# Expose the main Engine entry point
1012
from .engine import Engine
1113

12-
__all__ = ["Engine"]
14+
__all__ = ["Engine", "__version__"]

0 commit comments

Comments
 (0)