Skip to content

Commit

Permalink
Prepare for Version 0.3.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemarkboyd committed Jul 16, 2018
1 parent c61ae35 commit 07d3388
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ If an error occurs, the ‘error’ attribute is set to True and the ‘error_me
==== TYPICAL IMPLEMENTATION ====

from pypowerworld import pypowerworld

case_path = r‘somepathsomecase.pwb’ pw = pypowerworld(case_path) pw.solve()

case_path = r‘somepathsomecase.pwb’
pw = pypowerworld(case_path)
pw.solve()
if pw.error:
print(“Error encountered solving power flow: %s” % pw.error_message)
print(“Error encountered solving power flow: %s” % pw.error_message)
else:
print(“The case was solved using the Newton-Raphson method.”)
print(“The case was solved using the Newton-Raphson method.”)
2 changes: 1 addition & 1 deletion pypowerworld/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"""


VERSION = (0, 3, 4)
VERSION = (0, 3, 6)

__version__ = '.'.join(map(str, VERSION))

0 comments on commit 07d3388

Please sign in to comment.