Hofer-Julian

Results 92 issues of Hofer-Julian

Looking at the code, `configparser` changes the function signature depending on whether the `indexmap` feature is introduced. https://github.com/QEDK/configparser-rs/blob/671c19cae9ca4cc473e01632219e1e1d427e4ae2/src/ini.rs#L3-L6 This shouldn't happen, according to the Cargo book: https://doc.rust-lang.org/cargo/reference/features.html#semver-compatibility I think the...

### Checks - [x] I have checked that this issue has not already been reported. - [x] I have confirmed this bug exists on the [latest version](https://github.com/prefix-dev/pixi/releases) of pixi, using...

Currently, there's no way to deactivate an environment activated by `pixi shell-hook`. Let's implement that! Also see discussion in https://github.com/prefix-dev/pixi/issues/3525

enhancement

Now that https://github.com/prefix-dev/pixi/pull/3102 has been merged, every change to the package manifest will trigger a rebuild of the package. What you actually want is a retrigger if something relevant to...

enhancement
area:build

At the moment, Pixi build backends are not locked, which makes the workspace less reproducible. We should start adding them to our lock file.

enhancement
area:build

### Problem description As pointed out on [Discord](https://discord.com/channels/1082332781146800168/1336869539836592161/1336869539836592161), our backends only trigger a rebuild when certain files are touched. For example, for `pixi-build-python` it's the following list: https://github.com/prefix-dev/pixi-build-backends/blob/6aa683e0b7212665af6d04b80227438a5ab4f43a/crates/pixi-build/src/bin/pixi-build-python/protocol.rs#L362 That is...

area:build

### Problem description In case of limited internet access, it can be quite useful to force Pixi to rely on cached packages. `pixi add python --offline` would then directly use...

enhancement

## Why Pixi's manifest is growing and moving in a quick pace. Our [documentation](https://pixi.sh/latest/reference/pixi_manifest/) could benefit from some more automation. This was already done for the [CLI documentation](https://pixi.sh/latest/reference/cli/pixi/), where we...

documentation
good first issue
help wanted

Since https://github.com/prefix-dev/pixi-build-backends/pull/78, `pixi-build-rattler-build` can log the input its get via RPC as long as this configuration key is set in the TOML: ```toml [package.build.configuration] debug-dir = "/path/to/log_dir" ``` This is...

There are a few things left to discuss: - A couple of tests set env vars which is unsafe in a multi-threaded context. On Pixi, I just enforced current_thread with...