Skip to content

Commit b78890f

Browse files
committed
Add config for the classic notebook server extension
1 parent 9c1778d commit b78890f

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

binder/postBuild

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ popd
2020

2121
# List extensions
2222
jupyter serverextension list
23+
jupyter server extension list
2324
jupyter labextension list
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"NotebookApp": {
3+
"nbserver_extensions": {
4+
"jupyter_lsp": true
5+
}
6+
}
7+
}

python_packages/jupyter_lsp/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
data_files=[
1616
(
1717
"etc/jupyter/jupyter_server_config.d",
18-
["jupyter_lsp/etc/jupyter-lsp.json"],
18+
["jupyter_lsp/etc/jupyter_server_config.json"],
19+
),
20+
(
21+
"etc/jupyter/jupyter_notebook_config.d",
22+
["jupyter_lsp/etc/jupyter_notebook_config.json"],
1923
)
2024
],
2125
)

0 commit comments

Comments
 (0)