Skip to content

Commit 4ee0e53

Browse files
authored
Merge pull request #85 from python-project-templates/tkp/hf
Install develop for docs, force overwrite rust binaries
2 parents 2c98247 + c25ca2e commit 4ee0e53

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

cpp/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions-ext/python/setup@main
16-
- run: uv pip install .
16+
- run: uv pip install .[develop]
1717
- run: uv pip install yardang
1818
- run: yardang build
1919
- uses: peaceiris/actions-gh-pages@v4

js/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions-ext/python/setup@main
1616
- uses: actions-ext/node/setup@main
17-
- run: uv pip install .
17+
- run: uv pip install .[develop]
1818
- run: uv pip install yardang
1919
- run: yardang build
2020
- uses: peaceiris/actions-gh-pages@v4

jupyter/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions-ext/python/setup@main
1616
- uses: actions-ext/node/setup@main
17-
- run: uv pip install .
17+
- run: uv pip install .[develop]
1818
- run: uv pip install yardang
1919
- run: yardang build
2020
- uses: peaceiris/actions-gh-pages@v4

python/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- uses: actions-ext/python/setup@main
16-
- run: uv pip install .
16+
- run: uv pip install .[develop]
1717
- run: uv pip install yardang
1818
- run: yardang build
1919
- uses: peaceiris/actions-gh-pages@v4

rust/.github/workflows/{% if add_docs %}docs.yaml{% endif %}.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions-ext/python/setup@main
1616
- uses: actions-ext/rust/setup@main
17-
- run: uv pip install .
17+
- run: uv pip install .[develop]
1818
- run: uv pip install yardang
1919
- run: yardang build
2020
- uses: peaceiris/actions-gh-pages@v4

rust/rust/Makefile.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
requirements: ## install required dev dependencies
44
rustup component add rustfmt
55
rustup component add clippy
6-
cargo install cargo-nextest
7-
cargo install cargo-llvm-cov
6+
cargo install cargo-nextest --force
7+
cargo install cargo-llvm-cov --force
88

99
develop: requirements ## install required dev dependencies
1010

rustjswasm/rust/Makefile.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
requirements: ## install required dev dependencies
44
rustup component add rustfmt
55
rustup component add clippy
6-
cargo install cargo-nextest
7-
cargo install cargo-llvm-cov
6+
cargo install -f cargo-nextest
7+
cargo install -f cargo-llvm-cov
88
cargo install -f wasm-bindgen-cli
99
rustup target add wasm32-unknown-unknown
1010

0 commit comments

Comments
 (0)