Skip to content

Commit

Permalink
docs: added cli reminder to commit setup.py on versionbump
Browse files Browse the repository at this point in the history
  • Loading branch information
eladyaniv01 committed Aug 11, 2020
1 parent 874cf96 commit 28a65a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
]
setup( # pragma: no cover
name="sc2mapanalysis",
version="0.0.47",
version="0.0.48",
install_requires=requirements,
setup_requires=["wheel", "numpy"],
extras_require={
Expand Down
1 change: 1 addition & 0 deletions vb.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def update_setup(new_version):
subprocess.check_call('git fetch', shell=True)
subprocess.check_call('git pull', shell=True)
subprocess.check_call(f'standard-version --release-as {new_version}', shell=True)
click.echo("Don't forget to commit setup.py")
# subprocess.check_call('git push --follow-tags origin', shell=True)


Expand Down

0 comments on commit 28a65a3

Please sign in to comment.