Skip to content

Commit 08697b2

Browse files
committed
Fix twine usage, stop uploading wheels
1 parent 46c2888 commit 08697b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ def tag_and_push():
9797
def pypi():
9898
print("--- PYPI ---------------------------------------------------------")
9999
system("rm -rf build")
100-
system("python3 setup.py sdist bdist_wheel")
100+
system("python3 setup.py sdist")
101101
system("twine check dist/*")
102-
system("twine upload --skip-existing")
102+
system("twine upload --skip-existing dist/*")
103103

104104

105105
def github_release(tagname):

0 commit comments

Comments
 (0)