Skip to content

Commit 14f33e8

Browse files
authored
Include aarch64 Window artifacts in releases (#679)
1 parent b233563 commit 14f33e8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/release.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,18 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
129129
}],
130130
},
131131
);
132+
h.insert(
133+
"aarch64-pc-windows-msvc",
134+
TripleRelease {
135+
suffixes: vec!["pgo"],
136+
install_only_suffix: "pgo",
137+
python_version_requirement: Some(VersionSpecifier::from_str(">=3.11").unwrap()),
138+
conditional_suffixes: vec![ConditionalSuffixes {
139+
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
140+
suffixes: vec!["freethreaded+pgo"],
141+
}],
142+
},
143+
);
132144

133145
// Linux.
134146
let linux_suffixes_pgo = vec!["debug", "pgo+lto"];

0 commit comments

Comments
 (0)