From 6049ddcb860fa2280fd638d5a9107e80f6bdf305 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 5 Jan 2026 19:37:08 -0500 Subject: [PATCH] Add manylinux to armv6l match (#17328) ## Summary See: https://github.com/astral-sh/uv/pull/17317/changes#r2662205930. I omitted these because we technically don't allow this for manylinux, but this seems more consistent. --- crates/uv-platform-tags/src/platform_tag.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/crates/uv-platform-tags/src/platform_tag.rs b/crates/uv-platform-tags/src/platform_tag.rs index cc30749d3..3f620e347 100644 --- a/crates/uv-platform-tags/src/platform_tag.rs +++ b/crates/uv-platform-tags/src/platform_tag.rs @@ -376,7 +376,13 @@ impl PlatformTag { pub fn is_armv6l(&self) -> bool { matches!( self, - Self::Linux { + Self::Manylinux { + arch: Arch::Armv6L, + .. + } | Self::Manylinux2014 { + arch: Arch::Armv6L, + .. + } | Self::Linux { arch: Arch::Armv6L, .. } | Self::Musllinux {