From 0ea118077d0af4aeb911fded8fecd337c841f8f3 Mon Sep 17 00:00:00 2001 From: Jo <10510431+j178@users.noreply.github.com> Date: Fri, 18 Apr 2025 05:33:05 +0800 Subject: [PATCH] Fix `uv python list --only-downloads --all-arches` Depends on #12931 --- crates/uv/src/commands/python/list.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/uv/src/commands/python/list.rs b/crates/uv/src/commands/python/list.rs index 794ab1bd1..ee949ad63 100644 --- a/crates/uv/src/commands/python/list.rs +++ b/crates/uv/src/commands/python/list.rs @@ -78,6 +78,8 @@ pub(crate) async fn list( PythonListKinds::Installed => None, PythonListKinds::Downloads => Some(if all_platforms { base_download_request + } else if all_arches { + base_download_request.fill_platform()?.with_any_arch() } else { base_download_request.fill_platform()? }),