swift-match-78216
06/25/2026, 9:04 AMuv plugin only works on X86 instances right now, TODO in code here. We'd like to use ARM (Graviton) instances with uv . Is anyone working on this, or should I create a ticket and PR? The fix could be as simple as
def _get_uv_url() -> str:
"""Return the uv release URL for the current platform architecture."""
arch = platform.machine().lower()
if arch in ("aarch64", "arm64"):
return "<https://github.com/astral-sh/uv/releases/download/0.6.11/uv-aarch64-unknown-linux-gnu.tar.gz>"
return "<https://github.com/astral-sh/uv/releases/download/0.6.11/uv-x86_64-unknown-linux-gnu.tar.gz>"hundreds-rainbow-67050
07/16/2026, 5:40 PMswift-match-78216
08/04/2026, 1:42 PMhundreds-rainbow-67050
08/04/2026, 3:42 PMswift-match-78216
08/06/2026, 10:55 AMvyagh and just addressed the outstanding feedback to clean up his tests wrt. conventions (and simplified them a little, e.g. parameterize)swift-match-78216
08/06/2026, 1:40 PM