Skip to content

Commit 40325b0

Browse files
committed
normalize jupyter_lsp to jupyter-lsp in docs
1 parent eb0e9de commit 40325b0

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/Installation.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"\n",
3333
"#### Language Servers\n",
3434
"\n",
35-
"- run on your server,\n",
35+
"- run on your server\n",
3636
" - probably in another language runtime than python\n",
3737
"- some can be automatically [detected](./Language%20Servers.ipynb) if installed\n",
3838
"- others also need to be [configured](./Configuring.ipynb#language_servers)"
@@ -207,8 +207,8 @@
207207
"#### Install Jupyter[Lab] LSP\n",
208208
"\n",
209209
"```bash\n",
210-
"pip install jupyter_lsp\n",
211-
"jupyter labextension install @krassowski/jupyterlab-lsp\n",
210+
"pip install jupyter-lsp=0.8.0\n",
211+
"jupyter labextension install @krassowski/jupyterlab-lsp@0.8.0\n",
212212
"```"
213213
]
214214
},
@@ -218,12 +218,12 @@
218218
"source": [
219219
"### Next Step: Language Servers\n",
220220
"\n",
221-
"Now that you have `jupyterlab-lsp`, `jupyter_lsp` and all of their dependencies,\n",
221+
"Now that you have `jupyterlab-lsp`, `jupyter-lsp` and all of their dependencies,\n",
222222
"you'll need some language servers. See:\n",
223223
"\n",
224224
"- [Language Servers](./Language%20Servers.ipynb) that will be found\n",
225225
" automatically once installed\n",
226-
"- [configuring](./Configuring.ipynb) `jupyter_lsp` for more control over which\n",
226+
"- [configuring](./Configuring.ipynb) `jupyter-lsp` for more control over which\n",
227227
" servers to load"
228228
]
229229
}

docs/Releasing.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"source": [
77
"## Releasing\n",
88
"\n",
9-
"`jupyterlab-lsp` and `jupyter_lsp` releases may require building both the python\n",
9+
"`jupyterlab-lsp` and `jupyter-lsp` releases may require building both the python\n",
1010
"package and nodejs packages."
1111
]
1212
},

scripts/integrity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def test_changelog_versions(pkg, version):
151151

152152
@pytest.mark.parametrize(
153153
"pkg,sep,version,expected",
154-
[[PY_NAME, "=", PY_VERSION, 2], [MAIN_NAME, "@", MAIN_EXT_VERSION, 2]],
154+
[[PY_NAME, "=", PY_VERSION, 3], [MAIN_NAME, "@", MAIN_EXT_VERSION, 3]],
155155
)
156156
def test_installation_versions(the_installation_notebook, pkg, sep, version, expected):
157157
assert the_installation_notebook.count(f"{pkg}{sep}{version}") == expected

0 commit comments

Comments
 (0)