Skip to content

Commit 55a0e8f

Browse files
authored
Merge pull request #109 from robots-from-jupyter/patched-webrtc
docs: Use jupyterlite with patched WebRTC
2 parents 9632953 + d37de95 commit 55a0e8f

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

docs/environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ dependencies:
2525
- yarn
2626
- pip:
2727
# lite deps
28-
- jupyterlite[all] ==0.1.0b4
28+
# - jupyterlite[all] ==0.1.0b4
29+
- https://github.com/datakurre/jupyterlite/releases/download/v0.1.0b4.robotkernel/jupyterlite-0.1.0b4-py3-none-any.whl#egg=jupyterlite[all]
2930
- ../lite/jupyterlite-robotkernel

dodo.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def _clean_wheels():
199199
),
200200
# Not sure, why these were not discovered from conda environment
201201
doit.tools.CmdAction(
202-
[PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-widgets", "jupyter-videochat"],
202+
[PY, "-m", "pip", "wheel", "--no-deps", "--prefer-binary", "jupyterlab-widgets", "jupyter-videochat", "jupyterlab-drawio"],
203203
cwd=str(LITE),
204204
shell=False,
205205
),
@@ -221,6 +221,8 @@ def _build():
221221
"--LiteBuildConfig.federated_extensions",
222222
f"{list(LITE.glob('jupyterlab_widgets*'))[-1]}",
223223
"--LiteBuildConfig.federated_extensions",
224+
f"{list(LITE.glob('jupyterlab_drawio*'))[-1]}",
225+
"--LiteBuildConfig.federated_extensions",
224226
f"{list(LITE.glob('jupyterlab_robotmode*'))[-1]}",
225227
"--LiteBuildConfig.federated_extensions",
226228
EXT_WHL,

lite/repl/jupyter-lite.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"jupyter-config-data": {
3+
"disabledExtensions": [
4+
"@jupyterlab/drawio-extension"
5+
]
6+
},
7+
"jupyter-lite-schema-version": 0
8+
}

lite/retro/jupyter-lite.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"jupyter-config-data": {
33
"disabledExtensions": [
4+
"@jupyterlab/drawio-extension",
45
"jupyterlab-videochat:plugin",
56
"nbdime-jupyterlab:plugin"
67
]

0 commit comments

Comments
 (0)