Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the reusable Python CI workflows and the pixi setup composite action to support the newer pixi.lock format by bumping Pixi to the 0.70.x series.
Changes:
- Bump
prefix-dev/setup-pixiand the pinnedpixi-versionused by the pixi setup composite action. - Update reusable workflows to use
@v3for conda/poetry/hatch setup actions and an alpha ref for the pixi setup action. - Rework how modified Python files are captured/passed to pylint to handle multiline file lists safely.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/reusable-python-static_analysis.yml | Adjusts modified-file capture and passes modified files to pylint as an array; updates action refs. |
| .github/workflows/reusable-python-pytest.yml | Updates action refs used to set up conda/poetry/hatch/pixi environments. |
| .github/actions/reusable-python-setup_pixi/action.yml | Bumps setup-pixi action and Pixi version to 0.70.1. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
RomFloreani
previously approved these changes
Jun 9, 2026
Contributor
Author
…1117_pixi-0.70 # Conflicts: # .github/workflows/reusable-python-pytest.yml # .github/workflows/reusable-python-static_analysis.yml
Contributor
|
Looks good to me. I agree that this would be the easiest to avoid the Lockfile v7 issue. Good to approve once the workflows point to tag v3. |
Contributor
Author
|
facing this issue with newer pixi: prefix-dev/pixi#6161 with the older version, I was able to work around with : [activation]
# do not use dynamic versioning with this source editable package,
# or version changes with each commit and pixi.lock is detected as out-of-date
env = { POETRY_DYNAMIC_VERSIONING_OVERRIDE = "my-local-package=0.0.0.dev0+local" } |
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.

DEVOPS-1117 - newer pixi version to support new pixi.lock format