From 6c35fd25b7fe1358d2b67e50cb65ef5dfa14bde0 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Oct 2022 12:44:10 +0200 Subject: [PATCH 1/4] Re-add the custom widget tutorial --- docs/source/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/index.rst b/docs/source/index.rst index 578e87f910..e713292e70 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -111,6 +111,7 @@ some custom widget packages built on top of the Jupyter Widgets framework. examples/Using Interact.ipynb examples/Widget Low Level.ipynb examples/Widget Asynchronous.ipynb + examples/Widget Custom.ipynb embedding.md .. toctree:: From 87dd04d526fb7cacf6844d95905b5bad689f32a7 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Oct 2022 12:52:15 +0200 Subject: [PATCH 2/4] Remove mention to `jupyter-packaging` --- docs/source/examples/Widget Custom.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/examples/Widget Custom.ipynb b/docs/source/examples/Widget Custom.ipynb index 93a58a7f87..29d4a6ab20 100644 --- a/docs/source/examples/Widget Custom.ipynb +++ b/docs/source/examples/Widget Custom.ipynb @@ -53,7 +53,7 @@ "To create the environment, execute the following command:\n", "\n", "```bash\n", - "conda create -n ipyemail -c conda-forge jupyterlab jupyter-packaging cookiecutter nodejs yarn python\n", + "conda create -n ipyemail -c conda-forge jupyterlab cookiecutter nodejs yarn python\n", "```\n", "\n", "Then activate the environment with:\n", From e7d5a0a0ef64352097f21d66bae9de2f59b96e45 Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Oct 2022 12:52:43 +0200 Subject: [PATCH 3/4] Remove mention to JupyterLab 2.x --- docs/source/examples/Widget Custom.ipynb | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/source/examples/Widget Custom.ipynb b/docs/source/examples/Widget Custom.ipynb index 29d4a6ab20..10c4c20646 100644 --- a/docs/source/examples/Widget Custom.ipynb +++ b/docs/source/examples/Widget Custom.ipynb @@ -138,17 +138,6 @@ "yarn run watch\n", "```\n", "\n", - "\n", - "If you are using JupyterLab 2.x, you will need to install the `@jupyter-widgets/jupyterlab-manager` extension manually:\n", - "\n", - "```bash\n", - "# install the widget manager to display the widgets in JupyterLab\n", - "jupyter labextension install @jupyter-widgets/jupyterlab-manager --no-build\n", - "\n", - "# install the local extension\n", - "jupyter labextension install .\n", - "```\n", - "\n", "If you are using the Classic Notebook:\n", "\n", "```bash\n", From fb27948f19388b58c7be5dca8c6b333a93581fce Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 20 Oct 2022 13:44:17 +0200 Subject: [PATCH 4/4] Typo fix --- docs/source/examples/Widget Custom.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/examples/Widget Custom.ipynb b/docs/source/examples/Widget Custom.ipynb index 10c4c20646..d5cc5348c8 100644 --- a/docs/source/examples/Widget Custom.ipynb +++ b/docs/source/examples/Widget Custom.ipynb @@ -127,7 +127,7 @@ "# link your development version of the extension with JupyterLab\n", "jupyter labextension develop . --overwrite\n", "\n", - "# rebuild extension Typescript source after making changes\n", + "# rebuild extension TypeScript source after making changes\n", "yarn run build\n", "```\n", "\n",