fix(ci): regenerate pixi.lock to match pyproject.toml#8
Merged
bevankoopman merged 1 commit intoielab:mainfrom Apr 26, 2026
Merged
fix(ci): regenerate pixi.lock to match pyproject.toml#8bevankoopman merged 1 commit intoielab:mainfrom
bevankoopman merged 1 commit intoielab:mainfrom
Conversation
PR ielab#7 added the 'uvx' task to [tool.pixi.tasks] in pyproject.toml but shipped a stale pixi.lock. setup-pixi runs 'pixi install --locked' which fails with 'lock-file not up-to-date with the workspace', breaking all four matrix jobs (py310-py313) before any test runs. Regenerated via 'pixi install' against current pyproject.toml. Verified locally that 'pixi run -e py3{10,11,12,13} ci' passes (lint, fmt-check, 80 tests) and 'pixi install --locked' now succeeds.
Contributor
Author
|
@bevankoopman - PR to fix the failing CI tests on the last merge. |
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.
Problem
All four matrix jobs (py310/py311/py312/py313) on
mainare failing at the install step with:See run 24814670342.
Cause
PR #7 added the
uvxtask to[tool.pixi.tasks]inpyproject.tomlbut shipped a stalepixi.lock.prefix-dev/setup-pixirunspixi install --lockedby default, which refuses to install when the lock and manifest disagree, so every job dies before any test runs.Fix
Regenerated
pixi.lockviapixi installagainst the currentpyproject.toml. No code or workflow changes — just the lock file.Verification
Local (all four envs):