Skip to content

Commit

Permalink
Fix tasks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyue Ping Ong committed Nov 3, 2023
1 parent 5500664 commit f9c7ccd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ def make_docs(ctx):
@task
def publish(ctx):
ctx.run("rm dist/*.*", warn=True)
ctx.run("python setup.py sdist bdist_wheel")
ctx.run("python -m build")
ctx.run("python -m build --wheel")
ctx.run("twine upload dist/*")


Expand Down

0 comments on commit f9c7ccd

Please sign in to comment.