diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-28 22:10:32 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-28 22:10:32 -0700 |
commit | 6db806c7842e2b6dc75da14712dfa19e1b6354ce (patch) | |
tree | fddad3049c32d2d2535fd63d7d6eb44603b40a17 /tasks.py | |
parent | 79e71a22e999d8f7f6b5a9fc48d6776f40bd9ea3 (diff) | |
parent | d858ef1110039a3a068ea9aad5de85996a1f84ec (diff) |
Merge branch '1.15' into 1.16
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,7 +25,7 @@ def coverage(ctx): # Until we stop bundling docs w/ releases. Need to discover use cases first. @task -def release(ctx, sdist=True, wheel=True): +def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False): """ Wraps invocations.packaging.release to add baked-in docs folder. """ @@ -37,7 +37,7 @@ def release(ctx, sdist=True, wheel=True): # TODO: make it easier to yank out this config val from the docs coll copytree('sites/docs/_build', target) # Publish - publish(ctx, sdist=sdist, wheel=wheel) + publish(ctx, sdist=sdist, wheel=wheel, sign=sign, dry_run=dry_run) # Remind print("\n\nDon't forget to update RTD's versions page for new minor releases!") |