Skip to content

Commit 3545f6e

Browse files
committed
Fixed labextension name
1 parent 81f4b00 commit 3545f6e

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
with:
2222
python-version: '3.7'
2323
architecture: 'x64'
24-
25-
2624
- name: Setup pip cache
2725
uses: actions/cache@v2
2826
with:
@@ -52,5 +50,5 @@ jobs:
5250
jlpm run eslint:check
5351
python -m pip install .
5452
55-
jupyter labextension list 2>&1 | grep -ie "jupyter_bokeh.*OK"
53+
jupyter labextension list 2>&1 | grep -ie "@bokeh/jupyter_bokeh.*OK"
5654
python -m jupyterlab.browser_check

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ include install.json
88
include ts*.json
99
include yarn.lock
1010

11-
recursive-include jupyter_bokeh/nbextension/static *.js *.js.map *.d.ts
12-
11+
recursive-include jupyter_bokeh/nbextension/ *.js *.js.map *.d.ts
1312
graft jupyter_bokeh/labextension
1413

1514
# Javascript files

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
name: ["*"],
3232
}
3333

34-
labext_name = "jupyter_bokeh"
34+
labext_name = "@bokeh/jupyter_bokeh"
3535

3636
data_files_spec = [
3737
("share/jupyter/labextensions/%s" % labext_name, str(lab_path), "**"),

0 commit comments

Comments
 (0)