Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ If the respective dependencies are found, the following optional providers will
Optional providers can be installed using the `extras` syntax. To install [YAPF](https://github.com/google/yapf) formatting for example:

```
pip install 'python-lsp-server[yapf]'
pip install "python-lsp-server[yapf]"
```

All optional providers can be installed using:

```
pip install 'python-lsp-server[all]'
pip install "python-lsp-server[all]"
```

If you get an error similar to `'install_requires' must be a string or list of strings` then please upgrade setuptools before trying again.
Expand Down Expand Up @@ -91,7 +91,7 @@ All configuration options are described in [`CONFIGURATION.md`](https://github.c
To run the test suite:

```sh
pip install '.[test]' && pytest
pip install ".[test]" && pytest
```

After adding configuration options to `schema.json`, refresh the `CONFIGURATION.md` file with
Expand Down