Skip to content

Releases: prefix-dev/pixi

0.39.2 - 2024-12-11

11 Dec 15:33
5561cc3
Compare
Choose a tag to compare

Release Notes

Patch release to fix the binary generation in CI.

Download pixi 0.39.2

File Platform Checksum
pixi-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
pixi-x86_64-apple-darwin.tar.gz Intel macOS checksum
pixi-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
pixi-aarch64-pc-windows-msvc.msi ARM64 Windows checksum
pixi-x86_64-pc-windows-msvc.zip x64 Windows checksum
pixi-x86_64-pc-windows-msvc.msi x64 Windows checksum
pixi-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
pixi-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

v0.39.2-prerelease.2

11 Dec 13:42
Compare
Choose a tag to compare

v0.39.2-prerelease.0

11 Dec 09:23
Compare
Choose a tag to compare
v0.39.2-prerelease.0 Pre-release
Pre-release

Prerelease

Prerelease to test the new binary generation.

Download pixi 0.39.2-prerelease.0

File Platform Checksum
pixi-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
pixi-x86_64-apple-darwin.tar.gz Intel macOS checksum
pixi-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
pixi-aarch64-pc-windows-msvc.msi ARM64 Windows checksum
pixi-x86_64-pc-windows-msvc.zip x64 Windows checksum
pixi-x86_64-pc-windows-msvc.msi x64 Windows checksum
pixi-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum
pixi-x86_64-unknown-linux-musl.tar.gz x64 MUSL Linux checksum

0.39.1 - 2024-12-09

09 Dec 16:22
26a6392
Compare
Choose a tag to compare

Release Notes

Warning

This release is not set to the "latest" release as there are issues with the artifacts. We've release v0.39.2 which fixes these issue.

Added

Changed

Documentation

Fixed

Refactor

pixi build Preview work

New Contributors

v0.39.0 - 2024-12-02

02 Dec 13:01
656ecd6
Compare
Choose a tag to compare

✨ Highlights

  • We now have a new concurrency configuration in the pixi.toml file.
    This allows you to set the number of concurrent solves or downloads that can be run at the same time.
  • We changed the way pixi searches for a pixi manifest. Where it was previously first considering the activated pixi shell, it will now search first in the current directory and its parent directories. more info
  • The lockfile format is changed to make it slightly smaller and support source dependencies.

Added

Changed

Documentation

Fixed

Refactor

Pixi build

We've merged in the main pixi build feature branch. This is a big change but shouldn't have affected any of the current functionality.
If you notice any issues, please let us know.

It can be turned on by preview = "pixi-build" in your pixi.toml file. It's under heavy development so expect breaking changes in that feature for now.

New Contributors

v0.38.0 - 2024-11-26

26 Nov 14:26
67f3830
Compare
Choose a tag to compare

✨ Highlights

  • Specify pypi-index per pypi-dependency
[pypi-dependencies]
pytorch ={ version = "*", index = "https://download.pytorch.org/whl/cu118" }
  • [dependency-groups] (PEP735) support in pyproject.toml
[dependency-groups]
test = ["pytest"]
docs = ["sphinx"]
dev = [{include-group = "test"}, {include-group = "docs"}]

[tool.pixi.environments]
dev = ["dev"]
  • Much improved pixi search output!

Added

Fixed

Performance

Documentation

New Contributors

v0.37.0 - 2024-11-18

18 Nov 12:43
fc90191
Compare
Choose a tag to compare

✨ Highlights

We now allow the use of prefix.dev channels with sharded repodata:

Running pixi search rubin-env using hyperfine on the default versus our channels gives these results:

Cache Status Channel Mean [ms] Relative
With cache https://prefix.dev/conda-forge 69.3 1.00
Without https://prefix.dev/conda-forge 389.5 5.62
With cache https://conda.anaconda.org/conda-forge 1043.3 15.06
Without https://conda.anaconda.org/conda-forge 2420.3 34.94

Breaking

  • Make sure that [activation.env] are not completely overridden by [target. tables, by @hameerabbasi in #2396

Changed

Documentation

Fixed

New Contributors

v0.36.0 - 2024-11-07

12 Nov 18:52
ce2345b
Compare
Choose a tag to compare

✨ Highlights

  • You can now pixi upgrade your project dependencies.
  • We've done a performance improvement on the prefix validation check, thus faster pixi run startup times.

Added

Documentation

Fixed

Performance

New Contributors

v0.35.0 - 2024-11-05

06 Nov 06:59
13f5350
Compare
Choose a tag to compare

✨ Highlights

pixi global now exposed binaries are not scripts anymore but actual executables.
Resulting in significant speedup and better compatibility with other tools.

Added

Changed

Documentation

Fixed

Refactor

New Contributors

v0.34.0

22 Oct 10:38
61d4eba
Compare
Choose a tag to compare

✨ Highlights

  • pixi global install now takes a flag --with, inspired by uv tool install. If you only want to add dependencies without exposing them, you can now run pixi global install ipython --with numpy --with matplotlib
  • Improved the output of pixi global subcommands
  • Many bug fixes

Added

Changed

Documentation

Fixed

Refactor

New Contributors