diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2016-06-09 21:02:09 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2016-06-09 21:02:09 -0700 |
commit | 20aa3230e32a5018cb5b4245eab1af19dd28acf7 (patch) | |
tree | 4272395ed845c83cb36b3a444d88aed5cf6061e7 | |
parent | e0a458847beefa85959742f92faaea9830155255 (diff) |
Update tasks to use Invoke/Invocations 0.13
-rw-r--r-- | dev-requirements.txt | 4 | ||||
-rw-r--r-- | tasks.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dev-requirements.txt b/dev-requirements.txt index 0c1fc020..2547fb5f 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,8 +1,8 @@ # Older junk tox>=1.4,<1.5 # For newer tasks like building Sphinx docs. -invoke>=0.11.1,<2.0 -invocations>=0.11.0,<2.0 +invoke>=0.13,<2.0 +invocations>=0.13,<2.0 sphinx>=1.1.3,<2.0 alabaster>=0.7.5,<2.0 releases>=1.1.0,<2.0 @@ -2,7 +2,7 @@ from os import mkdir from os.path import join from shutil import rmtree, copytree -from invoke import Collection, ctask as task +from invoke import Collection, task from invocations.docs import docs, www, sites from invocations.packaging import publish |