Mercurial > wikked
view monkeys/release.py @ 492:eacacee352f7
core: Don't URL-encode endpoint separators (`:`).
This makes endpoint URLs nicer looking.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 07 Nov 2018 23:19:43 -0800 |
parents | 68b3cee3c805 |
children |
line wrap: on
line source
from invoke import task, run @task def makerelease(ctx, version, local_only=False): if not version: raise Exception("You must specify a version!") # FoodTruck assets. print("Update node modules") run("npm install") print("Generating Wikked assets") run("gulp") if not local_only: # Tag in Mercurial, which will then be used for PyPi version. run("hg tag %s" % version) # PyPi 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...")