Skip to content

Commit 611594d

Browse files
committed
Fix pip install command for contributors on zsh
On `zsh` (a popular shell, and the default for macOS), install fails: $ pip install -U -e .[validation] zsh: no matches found: .[validation] Quote the arguments so that `bash` or `zsh` will succeed.
1 parent 6557517 commit 611594d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You want to contribute some code? Great! Here are a few steps to get you started
3636
$ python -m venv venv
3737
$ source venv/bin/activate
3838
(venv) $ python -m pip install -U pip setuptools
39-
(venv) $ pip install -U -e .[validation]
39+
(venv) $ pip install -U -e '.[validation]'
4040
(venv) $ pip install -U -r requirements/dev.txt
4141
4242
#. **Make your changes and check them against the test project**
@@ -96,7 +96,7 @@ You want to contribute some code? Great! Here are a few steps to get you started
9696
#. **Your code must pass all the required CI jobs before it is merged**
9797

9898
As of now, this consists of running on the supported Python, Django, DRF version matrix (see README),
99-
and building the docs succesfully.
99+
and building the docs successfully.
100100

101101
******************
102102
Maintainer's notes

0 commit comments

Comments
 (0)