-
Notifications
You must be signed in to change notification settings - Fork 760
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support editables in uv sync
#3692
Conversation
This is bare-bones support for editables in `uv run` as basis for workspace support. It leverages the existing `ResolvedEditables` infrastructure.
// TODO(konsti): Read editables from lockfile. | ||
let editables = ResolvedEditables::default(); | ||
let editables = ResolvedEditables::resolve( | ||
Vec::new(), // TODO(konsti): Read editables from lockfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait, but this PR doesn't actually add anything, does it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I intentionally removed this in favor of a default impl.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see, i'll revert it until we have editable from the lockfile then: #3696
This is bare-bones support for editables in
uv sync
as basis for workspace support, notably without lockfile integration. It leverages the existingResolvedEditables
infrastructure.