Skip to content

Commit

Permalink
v1.5.4. Update stepspy and upload to pypi.
Browse files Browse the repository at this point in the history
  • Loading branch information
changgang committed Oct 20, 2021
1 parent 9b8ea47 commit c8c4a11
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
1 change: 1 addition & 0 deletions python/stepspy-current/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ stepspy is a Python module of Simulation Toolkit for Electrical Power Systems (S
STEPS is a simulation toolkit for powerflow and dynamic simulation of large-scale power systems. It provides detailed models of bus, line, transformer, HVDC, generator, wind turbine generator, load, and fixed shunt. For more information about STEPS, see (https://github.com/changgang/steps).

## Release Note
- 1.5.3.1. Oct. 20, 2021. Add new parameter to export dynamic model with internal bus number. Use STEPS>=1.5.4.
- 1.5.2. April 1, 2021. Fix bug of time.clock in pouch. Use time.perf_counter instead for Python>=3.8. Use STEPS>=1.5.2.
- 1.5.1. March. 24, 2021. Add new API to get generator related model internal variables. Use STEPS>=1.5.2.
- 1.4.1. Feb. 2, 2021. Add option export_full to API save_network_Y_matrix for exporting full network matrix. Use STEPS>=1.4.1.
Expand Down
2 changes: 1 addition & 1 deletion python/stepspy-current/howto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python -m pip install wheel twine

2. change version of stepsy in setup.py
2. change version of stepsy in setup.py, update README

3. to build stepspy module, use:

Expand Down
2 changes: 1 addition & 1 deletion python/stepspy-current/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="stepspy",
version="1.5.2",
version="1.5.3.1",
author="Changgang Li",
author_email="[email protected]",
description="Python module of Simulation Toolkit for Electrical Power Systems",
Expand Down
4 changes: 2 additions & 2 deletions python/stepspy-current/stepspy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"""
__all__ = ['help']
__author__ = "Changgang Li <[email protected]>"
__date__ = "April 22, 2020"
__version__ = "1.0.0"
__date__ = "Oct 20, 2020"
__version__ = "1.5.3"

from .stepspy import STEPS
from .pouch import POUCH, POUCH_CSV, POUCH_STEPS
Expand Down
3 changes: 0 additions & 3 deletions python/stepspy-current/stepspy/libsteps/pylibsteps.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
import platform
import os

libsteps_version = "0.13.0"
libsteps_date = "2020/09/09"

def get_base_library():
dirname, filename = os.path.split(os.path.abspath(__file__))
dirname = dirname.replace('\\','/')
Expand Down

0 comments on commit c8c4a11

Please sign in to comment.