Skip to content

Commit f9c8403

Browse files
committed
fix: installation instructions
1 parent 94f9d38 commit f9c8403

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Install the python. This will also build the TS package.
5151

5252
```bash
5353
# First install the python package. This will also build the JS packages.
54+
yarn install
5455
pip install -e ".[test, examples]"
5556

5657
# Run the python tests. This should not give you a few sucessful example tests

{{cookiecutter.github_project_name}}/.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
npm install -g codecov
2727
- name: Test the extension
2828
run: |
29+
yarn install
2930
python -m pip install --upgrade -v -e ".[test, examples, docs]"
3031
python -m pytest
3132
yarn run test

{{cookiecutter.github_project_name}}/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ conda activate {{ cookiecutter.python_package_name }}-dev
3131

3232
Install the python. This will also build the TS package.
3333
```bash
34+
yarn install
3435
pip install -e ".[test, examples]"
3536
```
3637

{{cookiecutter.github_project_name}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"hatchling>=1.3.1",
3+
"hatchling>=1.6.0",
44
"jupyterlab==3.*",
55
]
66
build-backend = "hatchling.build"
@@ -86,7 +86,7 @@ skip-if-exists = [
8686
"{{ cookiecutter.python_package_name }}/labextension/package.json",
8787
]
8888
dependencies = [
89-
"hatch-jupyter-builder>=0.5.0",
89+
"hatch-jupyter-builder>=0.8.2",
9090
]
9191

9292
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]

0 commit comments

Comments
 (0)