Skip to content

Commit d0d4331

Browse files
authored
Avoid shell expansions when installing pyls (docs)
1 parent cfb8caf commit d0d4331

File tree

1 file changed

+1
-1
lines changed
  • python_packages/jupyter_lsp/jupyter_lsp/specs

1 file changed

+1
-1
lines changed

python_packages/jupyter_lsp/jupyter_lsp/specs/pyls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class PythonLanguageServer(PythonModuleSpec):
1313
issues="https://github.com/palantir/python-language-server/issues",
1414
),
1515
install=dict(
16-
pip="pip install python-language-server[all]",
16+
pip="pip install 'python-language-server[all]'",
1717
conda="conda install -c conda-forge python-language-server",
1818
),
1919
extend=[

0 commit comments

Comments
 (0)