fix: drop redundant lint/format from wheel build template#41
Merged
Conversation
The Run formatting checks step ran ruff check against pyproject.toml, which since JRL-27 extends .shared/ruff.toml. That file is synced at runtime by ci_uv_python.yaml but not here, so the step fails with "No such file or directory" whenever a release-please-driven tag triggers a wheel build. Lint + type-check are already gated by ci_uv_python.yaml on every PR, so re-running them at wheel-build time is pure redundancy. Drop them.
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
Run formatting checksstep frombuild_uv_python_wheel_pure.yamlci_uv_python.yamlon every PR; re-running at wheel-build time is redundant and currently broken (depends on.shared/ruff.tomlwhich is only synced in ci_uv_python)Context
polars-hist-db's release-please flow fires this template via
dispatch-build-uv-python-wheel-pure; the format step failed with:Test plan