From 252694fdcb53916c30762b00c814a5efbf70f5be Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Wed, 20 Nov 2024 10:36:23 +0000 Subject: [PATCH 1/6] Update README.md - copier~=9.2 Update version of `copier` to match [`jupyterlab/extension-template`](https://github.com/jupyterlab/extension-template). --- hello-world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world/README.md b/hello-world/README.md index 82aac762..39f1c40e 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -14,7 +14,7 @@ Writing a JupyterLab extension usually starts from a configurable template. It can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and the following command: ```bash -pip install "copier~=7.2" jinja2-time "pydantic<2.0.0" +pip install "copier~=9.2" jinja2-time "pydantic<2.0.0" mkdir my_extension cd my_extension copier copy https://github.com/jupyterlab/extension-template . From 3dec4e126cce5c95595601bbd74d63022cabe515 Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Wed, 20 Nov 2024 10:44:44 +0000 Subject: [PATCH 2/6] Update copier copy command --- server-extension/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-extension/README.md b/server-extension/README.md index 5499c872..1624f440 100644 --- a/server-extension/README.md +++ b/server-extension/README.md @@ -25,7 +25,7 @@ can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and t pip install copier jinja2-time mkdir my_extension cd my_extension -copier https://github.com/jupyterlab/extension-template . +copier copy --trust https://github.com/jupyterlab/extension-template . ``` You will be asked for some basic information that could for example be setup From fc28eadbad61059f1716033a137ddc1ebc923503 Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Wed, 20 Nov 2024 10:47:17 +0000 Subject: [PATCH 3/6] Update copier copy command Fixes: https://github.com/jupyterlab/extension-examples/issues/270 --- mimerenderer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimerenderer/README.md b/mimerenderer/README.md index 20231f03..39ed6f3b 100644 --- a/mimerenderer/README.md +++ b/mimerenderer/README.md @@ -29,7 +29,7 @@ Execute the following commands in your terminal: pip install copier jinja2-time mkdir my_mimerenderer cd my_mimerenderer -copier https://github.com/jupyterlab/extension-template . +copier copy --trust https://github.com/jupyterlab/extension-template . ``` You will be asked for some basic information that could for example be setup From e71b6194e04d6e77fa2986adcaf8baee6a44e172 Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Fri, 22 Nov 2024 10:55:17 +0000 Subject: [PATCH 4/6] Update hello-world/README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frédéric Collonval --- hello-world/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hello-world/README.md b/hello-world/README.md index 39f1c40e..ee735722 100644 --- a/hello-world/README.md +++ b/hello-world/README.md @@ -14,7 +14,7 @@ Writing a JupyterLab extension usually starts from a configurable template. It can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and the following command: ```bash -pip install "copier~=9.2" jinja2-time "pydantic<2.0.0" +pip install "copier~=9.2" jinja2-time mkdir my_extension cd my_extension copier copy https://github.com/jupyterlab/extension-template . From c01f8190ebc1c478d231213d7f11319e5cfe10d1 Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Fri, 22 Nov 2024 10:55:32 +0000 Subject: [PATCH 5/6] Update mimerenderer/README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frédéric Collonval --- mimerenderer/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimerenderer/README.md b/mimerenderer/README.md index 39ed6f3b..683ed312 100644 --- a/mimerenderer/README.md +++ b/mimerenderer/README.md @@ -26,7 +26,7 @@ You will initialize the extension by using [copier](https://copier.readthedocs.i Execute the following commands in your terminal: ```bash -pip install copier jinja2-time +pip install "copier~=9.2" jinja2-time mkdir my_mimerenderer cd my_mimerenderer copier copy --trust https://github.com/jupyterlab/extension-template . From 418718cdc7d62a96bed4c961d5871cf0be8aa048 Mon Sep 17 00:00:00 2001 From: Tony Hirst Date: Fri, 22 Nov 2024 10:55:39 +0000 Subject: [PATCH 6/6] Update server-extension/README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Frédéric Collonval --- server-extension/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-extension/README.md b/server-extension/README.md index 1624f440..19fca889 100644 --- a/server-extension/README.md +++ b/server-extension/README.md @@ -22,7 +22,7 @@ Writing a JupyterLab extension usually starts from a configurable template. It can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and the following command for an extension with a server part: ```bash -pip install copier jinja2-time +pip install "copier~=9.2" jinja2-time mkdir my_extension cd my_extension copier copy --trust https://github.com/jupyterlab/extension-template .