Commit d4d4c843 authored by Olivier's avatar Olivier

update release script again

parent 5dcc5691
......@@ -30,11 +30,12 @@ def release():
if ans in ("", "y", "yes"):
os.system("git push")
os.system("git push --tags")
#ans = input("upload to pip?(Y/n)")
#if ans in ("", "y", "yes"):
#os.system("rm -rf dist/*")
#os.system("python3 setup.py sdist bdist_wheel")
#os.system("twine upload dist/*")
ans = input("upload to pip?(Y/n)")
if ans in ("", "y", "yes"):
os.system("rm -rf dist/*")
os.system("python3 setup.py sdist bdist_wheel")
os.system("twine upload dist/*")
os.system("git log -s --format=oneline")
if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment