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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ repos:
types: [file, rust]
entry: pixi run --environment=lint cargo-clippy
pass_filenames: false
stages: [pre-commit, manual]
stages: [pre-push, manual]
2 changes: 1 addition & 1 deletion docs/deployment/pixi_pack.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Using a cache is particularly useful when:

### Unpacking Without pixi-pack

If you don't have `pixi-pack` available on your target system, and do not want to use self-extracting binaries (see above), you can still install the environment if you have `conda` or `micromamba` available.
If you don't have `pixi-pack` available on your target system, and do not want to use self-extracting binaries (see above), you can still install the environment if you have `conda` or `micromamba` available.
Just unarchive the `environment.tar`, then you have a local channel on your system where all necessary packages are available.
Next to this local channel, you will find an `environment.yml` file that contains the environment specification.
You can then install the environment using `conda` or `micromamba`:
Expand Down
3 changes: 2 additions & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ lint-pixi_docs = { depends-on = [
"cargo-fmt-pixi_docs",
"cargo-clippy-pixi_docs",
] }
pre-commit-install = "pre-commit install --install-hooks"
pre-commit-install = "pre-commit install --install-hooks -t=pre-commit -t=pre-push"
pre-commit-install-minimal = "pre-commit install -t=pre-commit"
pre-commit-run = "pre-commit run --all-files"
prettier-fmt = { cmd = "prettier --write" }
ruff-format = "ruff format --force-exclude"
Expand Down
Loading