Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copier command (copier 7.2->9.2) #271

Merged
merged 6 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
mkdir my_extension
cd my_extension
copier copy https://github.com/jupyterlab/extension-template .
Expand Down
4 changes: 2 additions & 2 deletions mimerenderer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ 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 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
Expand Down
4 changes: 2 additions & 2 deletions server-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ 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 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
Expand Down
Loading