Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuminjie committed Feb 6, 2021
1 parent 6e6f15f commit a56f583
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openseespylinux-pip/openseespylinux/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "3.2.2.9"
version = "3.2.2.10"
2 changes: 1 addition & 1 deletion openseespywin-pip/openseespywin/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "3.2.2.9"
version = "3.2.2.10"
4 changes: 4 additions & 0 deletions update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ def update_version(version):
# change pip version
with open('openseespy-pip/openseespy/version.py', 'w') as fd:
fd.write(f'version = "{version}"')
with open('openseespylinux-pip/openseespylinux/version.py', 'w') as fd:
fd.write(f'version = "{version}"')
with open('openseespywin-pip/openseespywin/version.py', 'w') as fd:
fd.write(f'version = "{version}"')

# commit pip version
subprocess.run(['git', 'add', 'openseespy-pip'])
Expand Down

0 comments on commit a56f583

Please sign in to comment.