mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-04 19:08:04 +00:00
Support recursive extras (#1435)
## Summary We had a guard in the resolve to avoid "self-dependencies" (as in `gps3==0.33.3`), but this guard was _unintentionally_ filtering out recursive extras. Closes https://github.com/astral-sh/uv/issues/1342. ## Test Plan Taken from https://github.com/astral-sh/uv/pull/1352.
This commit is contained in:
parent
e6c4c77ba1
commit
f25781ff6c
4 changed files with 97 additions and 19 deletions
|
@ -45,7 +45,7 @@ import textwrap
|
|||
from pathlib import Path
|
||||
|
||||
|
||||
PACKSE_COMMIT = "de58b3e3f998486b6c0f3dd67b7341c880eb54b2"
|
||||
PACKSE_COMMIT = "64b4451b832cece378f6e773d326ea09efe8903d"
|
||||
TOOL_ROOT = Path(__file__).parent
|
||||
TEMPLATES = TOOL_ROOT / "templates"
|
||||
INSTALL_TEMPLATE = TEMPLATES / "install.mustache"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue