diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-04-28 22:16:25 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-04-28 22:16:25 -0700 |
commit | a372819cf905fc5bce68f30767dc2f22c6c82234 (patch) | |
tree | bf4a5623adb0aefa1107a4a64205f67bb5e352f9 | |
parent | f43d125c9156e84b50718a6bdad3a92d9ae9d14b (diff) | |
parent | 8ca5b68b0868bc435097a5832025d9aa90f256a1 (diff) |
Merge branch '1.17'
-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!") |