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 3 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 "pydantic<2.0.0"
psychemedia marked this conversation as resolved.
Show resolved Hide resolved
mkdir my_extension
cd my_extension
copier copy https://github.com/jupyterlab/extension-template .
Expand Down
2 changes: 1 addition & 1 deletion mimerenderer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Execute the following commands in your terminal:
pip install copier jinja2-time
psychemedia marked this conversation as resolved.
Show resolved Hide resolved
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
2 changes: 1 addition & 1 deletion server-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ can be downloaded with the [`copier`](https://copier.readthedocs.io/) tool and t
pip install copier jinja2-time
psychemedia marked this conversation as resolved.
Show resolved Hide resolved
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