Fix typo in CONTRIBUTING.md: [.dev] -> .[dev] (#1538)

This commit is contained in:
andreymal 2019-03-26 19:08:08 +03:00 committed by Stephen Sadowski
parent dab802fbf4
commit 566940e052

View File

@ -18,7 +18,7 @@ So assume you have already cloned the repo and are in the working directory with
a virtual environment already set up, then run: a virtual environment already set up, then run:
```bash ```bash
pip3 install -e . "[.dev]" pip3 install -e . ".[dev]"
``` ```
# Dependency Changes # Dependency Changes
@ -30,9 +30,9 @@ the document that explains the way `sanic` manages dependencies inside the `setu
| Dependency Type | Usage | Installation | | Dependency Type | Usage | Installation |
| ------------------------------------------| -------------------------------------------------------------------------- | --------------------------- | | ------------------------------------------| -------------------------------------------------------------------------- | --------------------------- |
| requirements | Bare minimum dependencies required for sanic to function | pip3 install -e . | | requirements | Bare minimum dependencies required for sanic to function | pip3 install -e . |
| tests_require / extras_require['test'] | Dependencies required to run the Unit Tests for `sanic` | pip3 install -e '[.test]' | | tests_require / extras_require['test'] | Dependencies required to run the Unit Tests for `sanic` | pip3 install -e '.[test]' |
| extras_require['dev'] | Additional Development requirements to add contributing | pip3 install -e '[.dev]' | | extras_require['dev'] | Additional Development requirements to add contributing | pip3 install -e '.[dev]' |
| extras_require['docs'] | Dependencies required to enable building and enhancing sanic documentation | pip3 install -e '[.docs]' | | extras_require['docs'] | Dependencies required to enable building and enhancing sanic documentation | pip3 install -e '.[docs]' |
## Running tests ## Running tests