mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-01 04:17:37 +00:00
Remove editable: false support (#5987)
## Summary This doesn't actually work yet. We'll re-add it in the future. Closes #5958.
This commit is contained in:
parent
8eada4077a
commit
cd0171a2ed
6 changed files with 8 additions and 24 deletions
|
|
@ -198,7 +198,6 @@ pub(crate) fn lower_requirement(
|
|||
},
|
||||
Source::Workspace {
|
||||
workspace: is_workspace,
|
||||
editable,
|
||||
} => {
|
||||
if !is_workspace {
|
||||
return Err(LoweringError::WorkspaceFalse);
|
||||
|
|
@ -238,7 +237,7 @@ pub(crate) fn lower_requirement(
|
|||
install_path: member.root().clone(),
|
||||
lock_path: relative_to_main_workspace,
|
||||
url,
|
||||
editable: editable.unwrap_or(true),
|
||||
editable: true,
|
||||
}
|
||||
}
|
||||
Source::CatchAll { .. } => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue