mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-31 15:57:26 +00:00
Add PyPy finder (#5337)
## Summary This PR adds PyPy finder and adds PyPy to uv managed Python versions. ## Test Plan ```console $ cargo run -- python install ```
This commit is contained in:
parent
96b24345eb
commit
7ddf67a72b
7 changed files with 2948 additions and 23 deletions
|
@ -35,6 +35,8 @@ def prepare_name(name: str) -> str:
|
|||
match name:
|
||||
case "cpython":
|
||||
return "CPython"
|
||||
case "pypy":
|
||||
return "PyPy"
|
||||
case _:
|
||||
raise ValueError(f"Unknown implementation name: {name}")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue