mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
Fix workspace_unsatisfiable_member_dependencies
(#14429)
This commit is contained in:
parent
3bb8ac610c
commit
a58969feef
1 changed files with 3 additions and 3 deletions
|
@ -1351,7 +1351,7 @@ fn workspace_unsatisfiable_member_dependencies() -> Result<()> {
|
|||
leaf.child("src/__init__.py").touch()?;
|
||||
|
||||
// Resolving should fail.
|
||||
uv_snapshot!(context.filters(), context.lock().current_dir(&workspace), @r###"
|
||||
uv_snapshot!(context.filters(), context.lock().current_dir(&workspace), @r"
|
||||
success: false
|
||||
exit_code: 1
|
||||
----- stdout -----
|
||||
|
@ -1359,9 +1359,9 @@ fn workspace_unsatisfiable_member_dependencies() -> Result<()> {
|
|||
----- stderr -----
|
||||
Using CPython 3.12.[X] interpreter at: [PYTHON-3.12]
|
||||
× No solution found when resolving dependencies:
|
||||
╰─▶ Because only httpx<=1.0.0b0 is available and leaf depends on httpx>9999, we can conclude that leaf's requirements are unsatisfiable.
|
||||
╰─▶ Because only httpx<=0.27.0 is available and leaf depends on httpx>9999, we can conclude that leaf's requirements are unsatisfiable.
|
||||
And because your workspace requires leaf, we can conclude that your workspace's requirements are unsatisfiable.
|
||||
"###
|
||||
"
|
||||
);
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue