We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c014ba commit fc46518Copy full SHA for fc46518
release.py
@@ -38,9 +38,8 @@ def release():
38
os.system("git tag {0}".format(v))
39
ans = input("Change committed, push to server? (Y/n)")
40
if ans.lower() in ("y", "yes"):
41
- # os.system("git push")
42
- # os.system("git push --tags")
43
- os.system("git push --follow-tags")
+ os.system("git push --tags")
+ # os.system("git push --follow-tags")
44
ans = input("Build dist packages?(Y/n)")
45
46
# os.system("rm -rf dist/*") #Linux
0 commit comments