diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2021-10-09 18:09:53 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2021-10-09 18:09:53 -0400 |
commit | ff6082608026b618d93c67d68d15fa452eef52a4 (patch) | |
tree | 7bd84375357a0c1cf724de7293b722b491a71edf | |
parent | 7714caf79a09dc455a32c6071dd22ba37c399758 (diff) |
blacken
-rw-r--r-- | tasks.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -100,7 +100,9 @@ def guard(ctx, opts=""): # TODO 3.0: I'd like to just axe the 'built docs in sdist', none of my other # projects do it. @task -def publish_(ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None): +def publish_( + ctx, sdist=True, wheel=True, sign=True, dry_run=False, index=None +): """ Wraps invocations.packaging.publish to add baked-in docs folder. """ @@ -154,6 +156,6 @@ ns.configure( "changelog_file": join( www.configuration()["sphinx"]["source"], "changelog.rst" ), - }, + } } ) |