mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-08 05:45:00 +00:00
Add downloading of GraalPy (#13172)
## Summary This adds GraalPy download metadata so that `uv python install graalpy` works. See https://github.com/astral-sh/uv/issues/13114 ## Test Plan The existing integration test was changed to test this functionality.
This commit is contained in:
parent
9071e0eeac
commit
878c2acdf3
8 changed files with 416 additions and 34 deletions
|
@ -197,8 +197,8 @@ if __name__ == "__main__":
|
|||
# Attempt to install NumPy.
|
||||
# This ensures that we can successfully install a package with native libraries.
|
||||
#
|
||||
# NumPy doesn't distribute wheels for Python 3.13 (at time of writing).
|
||||
if sys.version_info < (3, 13):
|
||||
# NumPy doesn't distribute wheels for Python 3.13 or GraalPy (at time of writing).
|
||||
if sys.version_info < (3, 13) and sys.implementation.name != "graalpy":
|
||||
install_package(uv=uv, package="numpy")
|
||||
|
||||
# Attempt to install `pydantic_core`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue