Skip to content

Releases: prefix-dev/pixi

0.66.0 - 2026-03-16

17 Mar 16:09
ac5f11e

Choose a tag to compare

Release Notes

✨ Highlights

Want a conda/mamba like workflow for Pixi workspaces? This release brings registered workspaces!

You can now register your Pixi workspace and then use its name to refer to it from anywhere on your machine.
For example:

cd path/to/a/pixi/workspace
pixi workspace register
cd
pixi run --workspace workspace-name task-name
pixi shell -w workspace-name
pixi shell-hook -w workspace-name

You can also specify constraints for packages that may be part of your environment without explicitly requiring them (similar to run_constraints for Conda packages):

[constraints]
openssl = ">=3"

Added

  • Add constraints to limit dependency versions by @delsner in #5603
  • pixi search improvements: allow arbitrary MatchSpecs, add --json by @pavelzw in #5442
  • Add atomic write utilities for safe file operations by @baszalmstra in #5500
  • Support -- separator to pass extra args to typed-arg tasks by @ruben-arts in #5569
  • Add template args for env vars in tasks as well by @tdejager in #5613
  • Allow users to use Pixi named workspaces through a registry by @soapy1 in #5277
  • Add pyproject.toml schema by @bollwyvl in #5583

Documentation

Fixed

New Contributors

Download pixi 0.66.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-riscv64gc-unknown-linux-gnu.tar.gz RISCV Linux 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.65.0 - 2026-02-26

27 Feb 07:29
9aac633

Choose a tag to compare

Release Notes

✨ Highlights

We're now properly signing our own Windows binaries resulting in no errors from the "smart screen".

Added

Documentation

Fixed

  • tool.pixi.pypi-options.no-build = true in combination with --locked by @hameerabbasi in #5554

Download pixi 0.65.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-riscv64gc-unknown-linux-gnu.tar.gz RISCV Linux 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.64.0 - 2026-02-23

24 Feb 12:02
cda547c

Choose a tag to compare

Release Notes

✨ Highlights

Big release with lots of different fixes and small features, but no overarching theme this time.

Added

Documentation

Fixed

New Contributors

Download pixi 0.64.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-riscv64gc-unknown-linux-gnu.tar.gz RISCV Linux 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.63.2 - 2026-01-19

19 Jan 15:43
7a53925

Choose a tag to compare

Release Notes

✨ Highlights

This release brings important fixes for Pixi Build and PyPI support.

Documentation

Fixed

Refactor

New Contributors

Download pixi 0.63.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

0.63.1 - 2026-01-15

15 Jan 14:56
87271b3

Choose a tag to compare

Release Notes

✨ Highlights

Yes, a patch release the day after looks like we messed up the last release, but we really just wanted to get these fixes out 🙃

Fixed

  • An issue with source-interdependencies and dev packages by @wolfv in #5292
  • Retain build.source spec in lock-file for relative paths by @baszalmstra in #5247

Download pixi 0.63.1

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.63.0 - 2026-01-14

14 Jan 15:02
b007a3f

Choose a tag to compare

Release Notes

✨ Highlights

Pixi now supports PEP508 environment markers for PyPI dependencies. Tasks can specify a default_environment, making it easier to run tasks without explicitly selecting an environment. Error messages become more readable with syntax highlighting in error reports.

As usual this release also includes a lot of bug fixes.

⚠️ Breaking

This version introduces a breaking chance in the communication protocol between build backends and pixi. New versions of the build backends that support this protocol have been released but if you pin your build backends to an older version you might encounter an error. Updating the version constraints of your build backend will fix this.

Added

Documentation

Fixed

Style

New Contributors

Download pixi 0.63.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.62.2 - 2025-12-22

22 Dec 09:41
c613168

Choose a tag to compare

Release Notes

✨ Highlights

This is a small patch release fixing issues with source packages and caching.

Fixed

Download pixi 0.62.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

0.62.1 - 2025-12-18

18 Dec 15:54
13f8eca

Choose a tag to compare

Release Notes

✨ Highlights

Small release with fixes related to the conda source dependencies.

Added

Documentation

Fixed

Download pixi 0.62.1

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.62.0 - 2025-12-17

17 Dec 10:53
2ead9d8

Choose a tag to compare

Release Notes

✨ Highlights

Do you need all the build/host/run dependencies of a package?
Now you can add source packages to the [dev] table to get them all at once without installing the package itself.

[dev]
my-package = { path = "src" }

Breaking change for pixi-build preview

This release removes the input hashes from the lockfile for source dependencies to reduce unnecessary lockfile changes. This may cause some lockfiles with source dependencies to become invalid. Rerun pixi lock to fix the lockfile. The changes in this release should significantly reduce lockfile churn when working with source packages going forward.

Added

Documentation

Fixed

Refactor

New Contributors

Download pixi 0.62.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.61.0 - 2025-12-09

09 Dec 12:02
e9b138a

Choose a tag to compare

Release Notes

✨ Highlights

This Pixi release features a new and improved pixi upload functionality, that is shared with rattler-build through rattler.

Changed

Fixed

New Contributors

Download pixi 0.61.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