Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions crates/uv-platform-tags/src/tags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,7 @@ fn compatible_tags(platform: &Platform) -> Result<Vec<PlatformTag>, PlatformErro
}
(Os::Musllinux { major, minor }, _) => {
let mut platform_tags = vec![PlatformTag::Linux { arch }];
// musl 1.1 is the lowest supported version in musllinux
platform_tags.extend((1..=*minor).map(|minor| PlatformTag::Musllinux {
platform_tags.extend((0..=*minor).map(|minor| PlatformTag::Musllinux {
major: *major,
minor,
arch,
Expand Down
Loading