Skip to content

Commit

Permalink
Merge branch '1.16' into 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Apr 29, 2016
2 parents 5915e9c + 6db806c commit 8ca5b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand All @@ -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!")

Expand Down

0 comments on commit 8ca5b68

Please sign in to comment.