build(deps): commit uv.lock, and add dependabot on the pip ecosystem - #2
Merged
Conversation
The lock was gitignored, so CI tested whatever resolved that day rather than a pinned closure. It could not be committed while `mdd` was private — nothing outside a laptop could resolve the dependency at all. The core is public now and CI clones it to `../mdd`, so commit the lock: 139 packages, with `mdd` recorded as the editable path source it is. Dependabot arrives on the **pip** ecosystem, not `uv`, even though uv is the one that would keep the lock in step with a bump. The uv updater cannot run against a path dependency it has not checked out — it fails the whole job with `path_dependencies_not_reachable` — so pip it is, and a merged bump PR needs a follow-up `uv lock`. The reason is recorded next to the setting so nobody "fixes" it into a red job. Assisted-by: Claude:claude-opus-5 Co-Authored-By: lsimons-bot <bot@leosimons.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.
Now that the core is public and CI clones it to
../mdd, the lock can becommitted — it could not be before, because nothing outside a laptop could
resolve the dependency. CI now tests a pinned closure (139 packages) instead
of whatever resolves that day.
mdditself is recorded as the editable pathsource it is.
Dependabot arrives on the pip ecosystem, not
uv. The uv updater is theone that would keep
uv.lockin step with a bump, but it cannot run againsta path dependency it has not checked out: it fails the whole job with
path_dependencies_not_reachable. Measured against the same topology in theprivate SBP wrapper today. So pip it is, and a merged bump PR needs a
follow-up
uv lock— the reason is in a comment next to the setting sonobody "fixes" it into a red job.
mise run cigreen locally (22 tests).Co-Authored-By: lsimons-bot bot@leosimons.com