diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-05-31 18:21:48 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-05-31 18:21:48 -0700 |
commit | 86815346590cc8c460a67ff2862c925c07214f09 (patch) | |
tree | 3fef6d43f5acc6e994c6b7cceb7ca832299e5b3a /tasks.py | |
parent | 15aa741ba245b7384e6af4f4eb095431cfec4c19 (diff) | |
parent | 383e102b54464f2be8fe5aaa3b1e9bd94ad0b788 (diff) |
Merge branch '2.0'
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: |