diff options
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -107,7 +107,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None): copytree("sites/docs/_build", target) # Publish publish( - ctx, sdist=sdist, wheel=wheel, sign=sign, dry_run=dry_run, index=index, + ctx, sdist=sdist, wheel=wheel, sign=sign, dry_run=dry_run, index=index ) # Remind print( @@ -122,15 +122,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None): release_coll.tasks["publish"] = release ns = Collection( - test, - coverage, - guard, - release_coll, - docs, - www, - sites, - travis, - blacken, + test, coverage, guard, release_coll, docs, www, sites, travis, blacken ) ns.configure( { |