From 7a817c91a288e521d86d80c2497ebf363fcde474 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 07:31:30 +0000 Subject: [PATCH] Update from copier (2026-05-17T07:31:30) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .gitignore | 9 ++++++--- rust/Makefile | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 7ab6156..24e5239 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: e392033 +_commit: 71014c6 _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rust diff --git a/.gitignore b/.gitignore index a24ff71..df0045e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ __pycache__/ # C extensions *.a +*.o +*.dSYM *.so *.obj *.dll @@ -13,6 +15,7 @@ __pycache__/ # Rust target +target-capi # Distribution / packaging .Python @@ -137,12 +140,12 @@ python_template_rust/extension python_template_rust/nbextension python_template_rust/labextension +# Emscripten SDK (locally installed) +emsdk + # Mac .DS_Store -# Rust -target - # Hydra outputs/ multirun/ diff --git a/rust/Makefile b/rust/Makefile index de9c2a3..32d986e 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 --locked --force - cargo install cargo-llvm-cov --force + cargo install --locked --force cargo-nextest + cargo install --force cargo-llvm-cov develop: requirements ## install required dev dependencies