feat: expand pixi platforms to macOS and Windows (#180)#273
Open
mvillmow wants to merge 3 commits into
Open
Conversation
mvillmow
commented
Jun 20, 2026
mvillmow
left a comment
Contributor
Author
There was a problem hiding this comment.
NOGO: lock format v7 vs CI-pinned pixi v0.67.0 (tool skew) may break install on all runners; unbounded mypy floor pulls 2.x on macOS/Windows, risking the new matrix.
Add osx-arm64, osx-64, and win-64 to the pixi.toml platforms list, enabling cross-platform development and distribution on macOS (Intel and Apple Silicon) and Windows. All pure-Python dependencies resolve on all four conda-forge tier-1 targets. Regenerate pixi.lock to capture new platform solves. Fixes #180 Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.com>
Run lint and test jobs on ubuntu-latest, macos-latest, and windows-latest to catch regressions that break macOS or Windows builds. Set shell: bash for Windows to ensure all pixi run commands behave identically across platforms. Keep secrets-scan on ubuntu-latest (Gitleaks installer is Linux-only). Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.com>
Add note in install.md clarifying that pixi install covers all four conda-forge tier-1 target platforms (linux-64, osx-arm64, osx-64, win-64). Add CHANGELOG entry documenting the platform expansion. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com> Signed-off-by: mvillmow <4211002+mvillmow@users.noreply.github.com>
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.
Summary
Expands
pixi.tomlplatforms fromlinux-64only to all four conda-forge tier-1 targets:linux-64(Linux, x86-64)osx-arm64(macOS, Apple Silicon)osx-64(macOS, Intel)win-64(Windows, x86-64)This enables cross-platform development for contributors and operators on macOS and Windows without dependency conflicts. All declared dependencies are pure-Python with universal wheel support on PyPI.
Changes
platformsarray with all four targetspixi installto include all four platform solvesubuntu-latest,macos-latest,windows-latest) tolint-and-testjob withshell: bashdefault for cross-platform shell compatibilityVerification
All acceptance criteria met:
pixi.toml:6declares all four platformspixi.lockcontains solved environments for all four platformsCloses #180
Co-Authored-By: Claude Haiku 4.5 noreply@anthropic.com