From 389c96d38779e85023b647bdd2df548ba8183cd5 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 21:27:20 +0000 Subject: [PATCH] Update from copier (2025-08-11T21:27:20) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 2 +- .github/workflows/docs.yaml | 2 +- .github/workflows/wiki.yaml | 2 +- pyproject.toml | 2 +- rust/Makefile | 4 ++-- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index c5b2eb7..b8885ba 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 2c98247 +_commit: 3a223c6 _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rustjswasm diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 16f15b1..c6e6a2b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ jobs: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main with: diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 52abc4a..5dc082d 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,7 +11,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main - uses: actions-ext/rust/setup@main - uses: actions-ext/node/setup@main diff --git a/.github/workflows/wiki.yaml b/.github/workflows/wiki.yaml index 8de232b..e0a4608 100644 --- a/.github/workflows/wiki.yaml +++ b/.github/workflows/wiki.yaml @@ -20,7 +20,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: cp README.md docs/wiki/Home.md - uses: Andrew-Chen-Wang/github-wiki-action@v5 with: diff --git a/pyproject.toml b/pyproject.toml index 724f44e..a1a6a17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -111,7 +111,7 @@ test-command = "pytest -vvv {project}/python_template_rust/tests" test-requires = ["pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"] [tool.cibuildwheel.linux] -before-build = """ +before-all = """ curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain=stable --profile=minimal -y rustup target add aarch64-unknown-linux-gnu rustup target add x86_64-unknown-linux-gnu diff --git a/rust/Makefile b/rust/Makefile index 16d2d73..4450369 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -3,8 +3,8 @@ requirements: ## install required dev dependencies rustup component add rustfmt rustup component add clippy - cargo install cargo-nextest - cargo install cargo-llvm-cov + cargo install -f cargo-nextest + cargo install -f cargo-llvm-cov cargo install -f wasm-bindgen-cli rustup target add wasm32-unknown-unknown