summaryrefslogtreecommitdiff
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2016-04-28 22:02:03 -0700
committerJeff Forcier <jeff@bitprophet.org>2016-04-28 22:05:25 -0700
commitd858ef1110039a3a068ea9aad5de85996a1f84ec (patch)
treea1422403740a836128638c1cd2a35a6f6e2f6cf2 /tasks.py
parent6145232e4ec9c8d7fb598606bf4ca81d7a7cf54b (diff)
downloadparamiko-d858ef1110039a3a068ea9aad5de85996a1f84ec.tar.gz
Add more params to release task wrapper
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index d2bed606..9e8c56d2 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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!")