diff options
author | Dorian Pula <dorian.pula@amber-penguin-software.ca> | 2017-05-23 16:36:21 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-05-31 17:14:40 -0700 |
commit | c1a0974d8886c6a2d46fb69a4a7df382875374c2 (patch) | |
tree | 9ee49c23a56b8bed833a081248146f07263a85fd /tasks.py | |
parent | ad4cddfb3b684b21ddcbf3ac8bc9a29fc0c9c81c (diff) |
Fix flake8 for top-level modules.
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,3 @@ -from os import mkdir from os.path import join from shutil import rmtree, copytree @@ -41,7 +40,9 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False): # Publish 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!") + print("\n\nDon't forget to update RTD's versions page for new minor " + "releases!") + # TODO: "replace one task with another" needs a better public API, this is # using unpublished internals & skips all the stuff add_task() does re: |