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:
Charlie Marsh 2024-02-16 11:42:04 -05:00 committed by GitHub
parent e6c4c77ba1
commit f25781ff6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 97 additions and 19 deletions

View file

@ -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"