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 13b8a5c commit 5c014baCopy full SHA for 5c014ba
release.py
@@ -45,15 +45,15 @@ def release():
45
if ans.lower() in ("y", "yes"):
46
# os.system("rm -rf dist/*") #Linux
47
os.system("RMDIR /S /Q dist") #Windows
48
- os.system("python -m build")
+ os.system("python3.10 -m build")
49
ans = input("upload to pip?(Y/n)")
50
51
52
# Test PyPi Server
53
- os.system("twine upload --repository testpypi dist/*")
+ os.system("python -m twine upload --repository testpypi dist/*")
54
55
#Production PyPi Server
56
- # os.system("twine upload dist/*")
+ # os.system("python -m twine upload dist/*")
57
58
59
if __name__ == "__main__":
0 commit comments