Skip to content

Commit bae8e27

Browse files
committed
Mention invoke==0.13.0 requirement in docs
1 parent b497e2c commit bae8e27

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Configure development environment and Install the development dependencies.
4545
$ pip install virtualenv
4646
$ pip install virtualenvwrapper
4747
$ mkvirtualenv --python=`which python3` mfr
48-
$ pip install invoke==0.11.1
48+
$ pip install invoke==0.13.0
4949
5050
5151
Lastly, install mfr in development mode. ::

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pip install virtualenv
4141
pip install virtualenvwrapper
4242
mkvirtualenv --python=`which python3.5` mfr
4343
pip install setuptools==30.4.0
44-
pip install invoke==0.11.1
44+
pip install invoke==0.13.0
4545
invoke install
4646
invoke server
4747
```
@@ -90,6 +90,8 @@ invoke test
9090

9191
- The error `def create_default_context(purpose=ssl.Purpose.SERVER_AUTH, *, cafile=None, capath=None, cadata=None): SyntaxError: invalid syntax` can be fixed by restarting your virtual environment. The problem should not reoccur.
9292

93+
- `invoke $command` results in `'$command' did not receive all required positional arguments!`: this error message occurs when trying to run MFR v0.19.0+ with `invoke<0.13.0`. Run `pip install invoke==0.13.0`, then retry your command.
94+
9395
### Create your own module
9496

9597
Interested in adding support for a new provider or file format? Check out the CONTRIBUTING.rst docs.

docs/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Or download one of the following:
1616

1717
Make sure that you have installed pspp, are using python3.5, and have installed invoke for your current python3 version.
1818

19-
Install the version of invoke found in the requirements.txt file. Currently 0.11.1
19+
Install the version of invoke found in the requirements.txt file. Currently 0.13.0
2020

2121
Install ``invoke``:
2222

2323
.. code-block:: bash
2424
25-
pip install invoke==0.11.1
25+
pip install invoke==0.13.0
2626
2727
Install requirements:
2828

0 commit comments

Comments
 (0)