Skip to content

Commit

Permalink
Fix twine usage, stop uploading wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Oct 4, 2024
1 parent 46c2888 commit 08697b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def tag_and_push():
def pypi():
print("--- PYPI ---------------------------------------------------------")
system("rm -rf build")
system("python3 setup.py sdist bdist_wheel")
system("python3 setup.py sdist")
system("twine check dist/*")
system("twine upload --skip-existing")
system("twine upload --skip-existing dist/*")


def github_release(tagname):
Expand Down

0 comments on commit 08697b2

Please sign in to comment.