# HG changeset patch # User Ludovic Chabant # Date 1541661533 28800 # Node ID 68b3cee3c80584e995fb107f53279016643ac611 # Parent a2a46d1774f5851c5369138ca5a4738a9c393d26 cm: Use `twine` to deploy Wikked to Pypi. diff -r a2a46d1774f5 -r 68b3cee3c805 monkeys/release.py --- a/monkeys/release.py Thu Nov 01 22:03:34 2018 -0700 +++ b/monkeys/release.py Wed Nov 07 23:18:53 2018 -0800 @@ -17,7 +17,8 @@ run("hg tag %s" % version) # PyPi upload. - run("python setup.py sdist upload") + run("python setup.py sdist bdist_wheel") + run("twine upload dist/Wikked-%s.tar.gz" % version) else: print("Would tag repo with %s..." % version) print("Would upload to PyPi...")