Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 .copier-answers.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ __pycache__/

# C extensions
*.a
*.o
*.dSYM
*.so
*.obj
*.dll
Expand All @@ -13,6 +15,7 @@ __pycache__/

# Rust
target
target-capi

# Distribution / packaging
.Python
Expand Down Expand Up @@ -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/
Expand Down
4 changes: 2 additions & 2 deletions rust/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading