Skip to content

Releases: prefix-dev/pixi

0.67.2 - 2026-04-23

23 Apr 10:04
3e2b5c5

Choose a tag to compare

Release Notes

Added

  • Add HTTP timeout, retries, and concurrency env var support by @wolfv in #5581
  • Support PIXI_NO_INSTALL environment variable by @Shardz4 in #5919

Changed

Documentation

New Contributors

Download pixi 0.67.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-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.67.1 - 2026-04-20

20 Apr 14:09
ad7d4b5

Choose a tag to compare

Release Notes

Changed

Documentation

Fixed

New Contributors

Download pixi 0.67.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-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.67.0 - 2026-04-08

08 Apr 14:49
0a043d7

Choose a tag to compare

Release Notes

✨ Highlights

This release adds the ability to have relative exclude-newer configuration.
Allowing users to specify an acceptable settle time before the package is used in their environments.
This example extensively uses the new exclude-newer configuration options:

[workspace]
# Workspace level exclude newer
exclude-newer = "14d"
# Exact timestamp exclude-newer still works as well:
# exclude-newer = "2025-01-01"

channels = [
    # Channel specific exclude-newer
    { channel = "my-internal-channel", exclude-newer = "0d" },
    "conda-forge",
]
platforms = ["osx-arm64", "linux-64", "linux-aarch64", "osx-64", "win-64"]

[exclude-newer]
# Package specific exclude-newer
bzip2 = "3d"

[dependencies]
python = "*"
snakemake = "*"

[pypi-exclude-newer]
# PyPI package specific exclude-newer
pandas = "1week"

[pypi-dependencies]
pandas = "*"

Added

  • Report installation progress to terminal by @hunger in #5634
  • Expose paths to activation scripts as a field in pixi shell-hook --json by @esteve in #5726
  • Add pixi publish command for building and uploading packages by @wolfv in #5678
  • Enable fancy error reporting for trampolines by @Hofer-Julian in #5780
  • Relative exclude-newer configuration by @pavelzw in #5786
  • Add channel-specific exclude-newer by @pavelzw in #5840
  • Add package-specific exclude-newer for PyPi by @pavelzw in #5839
  • Use global [exclude-newer] table instead by @pavelzw in #5843

Documentation

Fixed

New Contributors

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