Skip to content

Commit 1c2b79b

Browse files
authored
Merge pull request #367 from krassowski/fix-pip-install-in-docs
Fix pip install version pin using = rather than ==
2 parents 944ff37 + ce623f7 commit 1c2b79b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/Installation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@
271271
"##### pip\n",
272272
"\n",
273273
"```bash\n",
274-
"pip install jupyter-lsp={JUPYTER_LSP_VERSION}\n",
274+
"pip install jupyter-lsp=={JUPYTER_LSP_VERSION}\n",
275275
"jupyter labextension install @krassowski/jupyterlab-lsp@{JUPYTERLAB_LSP_VERSION}\n",
276276
"```"
277277
]

scripts/integrity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ def test_changelog_versions(pkg, version):
184184
@pytest.mark.parametrize(
185185
"pkg,sep,version,expected",
186186
[
187-
[PY_NAME, "=", PY_VERSION, 3],
187+
[PY_NAME, "=", PY_VERSION, 2],
188+
[PY_NAME, "==", PY_VERSION, 1],
188189
[PY_NAME + "-python", "=", PY_VERSION, 1],
189190
[JS_LSP_NAME, "@", JS_LSP_VERSION, 4]
190191
],

0 commit comments

Comments
 (0)