Skip to content

Commit

Permalink
fix release.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tabatkins committed Dec 8, 2023
1 parent 80580a6 commit b07715a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def createRelease():
try:
# Clear out the build artifacts, build it, upload, and clean up again.
subprocess.call("rm -r build dist", shell=True)
subprocess.check_call("python setup.py sdist bdist_wheel", shell=True)
subprocess.check_call("python setup.py sdist", shell=True)
if options.test:
subprocess.check_call(
" ".join(
Expand Down

0 comments on commit b07715a

Please sign in to comment.