Skip to content

Commit f15bda1

Browse files
authored
Merge pull request #552 from lewiuberg/patch-1
include second = for pip install
2 parents 8decc50 + 99e0caa commit f15bda1

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
@@ -250,7 +250,7 @@
250250
"##### pip\n",
251251
"\n",
252252
"```bash\n",
253-
"pip install jupyterlab-lsp={JUPYTERLAB_LSP_VERSION}\n",
253+
"pip install jupyterlab-lsp=={JUPYTERLAB_LSP_VERSION}\n",
254254
"```"
255255
]
256256
},

scripts/integrity.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@ def test_changelog_versions(pkg, version):
195195
], # zero because jupyterlab-lsp is good enough
196196
[PY_SERVER_NAME + "-python", "=", PY_SERVER_VERSION, 1],
197197
[JS_LSP_NAME, "@", JS_LSP_VERSION, 1], # TODO: update docker instructions
198-
[PY_FRONT_NAME, "=", JS_LSP_VERSION, 3],
198+
[PY_FRONT_NAME, "=", JS_LSP_VERSION, 2], # conda install
199+
[PY_FRONT_NAME, "==", JS_LSP_VERSION, 1], # pip install
199200
],
200201
)
201202
def test_installation_versions(the_installation_notebook, pkg, sep, version, expected):

0 commit comments

Comments
 (0)