Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions src/auditwheel/musllinux-policy.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
},
"s390x": {
},
"armv6l": {
},
Comment on lines +46 to +47
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is vendored from https://github.com/pypa/auditwheel/blob/main/src/auditwheel/policy/musllinux-policy.json, we shouldn't diverge from it. Maybe we need to update it upstream?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like it was skipped on initial compatibility pypa/auditwheel#315 (comment)

"armv7l": {
},
"riscv64": {
Expand Down
5 changes: 3 additions & 2 deletions src/target/legacy_py.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ pub(super) static MANYLINUX_ARCHES: &[&str] = &[
"x86_64", "i686", "aarch64", "armv7l", "ppc64le", "s390x", "ppc64", "riscv64",
];

pub(super) static MUSLLINUX_ARCHES: &[&str] =
&["x86_64", "i686", "aarch64", "armv7l", "ppc64le", "s390x"];
pub(super) static MUSLLINUX_ARCHES: &[&str] = &[
"x86_64", "i686", "aarch64", "armv6l", "armv7l", "ppc64le", "s390x",
];
Loading