Skip to content

Commit 7f5cd10

Browse files
Update copier command (copier 7.2->9.2) (#271)
* Update README.md - copier~=9.2 Update version of `copier` to match [`jupyterlab/extension-template`](https://github.com/jupyterlab/extension-template). * Update copier copy command * Update copier copy command Fixes: #270 * Update hello-world/README.md Co-authored-by: Frédéric Collonval <[email protected]> * Update mimerenderer/README.md Co-authored-by: Frédéric Collonval <[email protected]> * Update server-extension/README.md Co-authored-by: Frédéric Collonval <[email protected]> --------- Co-authored-by: Frédéric Collonval <[email protected]>
1 parent 8782017 commit 7f5cd10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

hello-world/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Writing a JupyterLab extension usually starts from a configurable template. It
1414
can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and the following command:
1515

1616
```bash
17-
pip install "copier~=7.2" jinja2-time "pydantic<2.0.0"
17+
pip install "copier~=9.2" jinja2-time
1818
mkdir my_extension
1919
cd my_extension
2020
copier copy https://github.com/jupyterlab/extension-template .

mimerenderer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ You will initialize the extension by using [copier](https://copier.readthedocs.i
2626
Execute the following commands in your terminal:
2727

2828
```bash
29-
pip install copier jinja2-time
29+
pip install "copier~=9.2" jinja2-time
3030
mkdir my_mimerenderer
3131
cd my_mimerenderer
32-
copier https://github.com/jupyterlab/extension-template .
32+
copier copy --trust https://github.com/jupyterlab/extension-template .
3333
```
3434

3535
You will be asked for some basic information that could for example be setup

server-extension/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Writing a JupyterLab extension usually starts from a configurable template. It
2222
can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and the following command for an extension with a server part:
2323

2424
```bash
25-
pip install copier jinja2-time
25+
pip install "copier~=9.2" jinja2-time
2626
mkdir my_extension
2727
cd my_extension
28-
copier https://github.com/jupyterlab/extension-template .
28+
copier copy --trust https://github.com/jupyterlab/extension-template .
2929
```
3030

3131
You will be asked for some basic information that could for example be setup

0 commit comments

Comments
 (0)