We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c4d72 commit 29a325cCopy full SHA for 29a325c
1 file changed
src/target/legacy_py.rs
@@ -50,7 +50,7 @@ pub(super) static WINDOWS_ARCHES: &[&str] = &["x86_64", "i686", "aarch64"];
50
pub(super) static MACOS_ARCHES: &[&str] = &["x86_64", "arm64", "i686", "universal2"];
51
52
/// Those are actually hardcoded in warehouse in the same way.
53
-pub(super) static MACOS_MAJOR_VERSIONS: &[&str] = &["10", "11", "12", "13", "14", "15"];
+pub(super) static MACOS_MAJOR_VERSIONS: &[&str] = &["10", "11", "12", "13", "14", "15", "26"];
54
55
pub(super) static IOS_ARCHES: &[&str] = &["arm64", "x86_64"];
56
@@ -60,5 +60,6 @@ pub(super) static MANYLINUX_ARCHES: &[&str] = &[
60
"x86_64", "i686", "aarch64", "armv7l", "ppc64le", "s390x", "ppc64", "riscv64",
61
];
62
63
-pub(super) static MUSLLINUX_ARCHES: &[&str] =
64
- &["x86_64", "i686", "aarch64", "armv7l", "ppc64le", "s390x"];
+pub(super) static MUSLLINUX_ARCHES: &[&str] = &[
+ "x86_64", "i686", "aarch64", "armv7l", "ppc64le", "s390x", "riscv64",
65
+];
0 commit comments