chore: bump version to v0.71.0 - #6433
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[0.71.0] - 2026-06-24
✨ Highlights
This release adds a lot of exciting features!
The biggest one is that we deprecated
[system-requirements]in favor of the much more expressive rich platform support.On top of operating systems and processor architecture, platforms can now also include system requirements like CUDA or glibc version:
Speaking of CUDA, together with rich platforms we added support for
__cuda_arch.We already supported
__cudawhich allows specifying the driver version you require.With
__cuda_arch, you can specify the necessary hardware architecture.We also added support for v3 repodata.
That means you can declare extra dependency groups:
And of course you can also consume them:
It also includes the
whenkeyword:And it allows to set flags:
Finally, we revamped the way we define conditional dependencies.
We deprecated
[target.*.host,build,run-dependencies]and introduce the following syntax:NOTE: This only affects source dependencies.
[target.*.dependencies]remains valid.Breaking changes
Added
pixi addskips already-present packages without version spec by @ruben-arts in #6352--no-pypiflag to conda-environment export by @baszalmstra in #6380c_stdlibbuild variants from system requirements by @hunger in #6320Changed
Documentation
Fixed
pixi-build-rustto0dby @Hofer-Julian in #6394Performance
Refactor
New Contributors