chore(renovate): normalize requirements.lock header to equals-form - #1391
Merged
Conversation
Renovate's pip-compile manager (enabled fleet-wide via the shared preset, stranske/Workflows#2406) parses the lock header to reconstruct the uv command and requires every option in equals form (--extra=, --output-file=). This lock's header used space form, so Renovate raised a non-fatal "Option ... must have equal sign" warning and SILENTLY SKIPPED the lock — meaning it was never regenerated on dependency bumps. This rewrites only the header line to equals form; the resolved pins are byte-identical (header-only diff). Verified with `npx renovate@43 --platform=local --dry-run=extract`: pip-compile extracts the lock with no error after the change. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
✅ Deploy Preview for stranske-trip-planner canceled.
|
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (1)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
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.
Renovate's
pip-compilemanager (enabled fleet-wide via the shared preset, stranske/Workflows#2406) parses the lock header to reconstruct theuv pip compilecommand and requires every option in equals form (--extra=dev,--output-file=requirements.lock). This repo's lock header was in space form, so Renovate raised a non-fatalOption ... must have equal signwarning and silently skipped the lock — it was never regenerated on dependency bumps.This rewrites only the header line to equals form; the resolved pins are byte-identical (header-only diff).
Verified with
npx renovate@43 --platform=local --dry-run=extracton a sibling repo: before =pip-compile error … must have equal sign(skipped); after = lock extracted, no error.Part of the fleet pip-compile lock-regen rollout (Workflows #2406 enabled the manager; consumer lock headers were space-form and needed normalizing).