Skip to content

Include Python 3.14 in published musl distributions #582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2025
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ env:
permissions:
contents: write
packages: write
releases: wrte
# Permissions used for actions/attest-build-provenance
id-token: write
attestations: write
Expand Down
9 changes: 4 additions & 5 deletions src/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,12 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
}],
},
);
// TODO: Python 3.14 support on musl
h.insert(
"x86_64-unknown-linux-musl",
TripleRelease {
suffixes: linux_suffixes_musl.clone(),
install_only_suffix: "lto",
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
python_version_requirement: None,
conditional_suffixes: vec![],
},
);
Expand All @@ -289,7 +288,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: linux_suffixes_musl.clone(),
install_only_suffix: "lto",
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
python_version_requirement: None,
conditional_suffixes: vec![],
},
);
Expand All @@ -298,7 +297,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: linux_suffixes_musl.clone(),
install_only_suffix: "lto",
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
python_version_requirement: None,
conditional_suffixes: vec![],
},
);
Expand All @@ -307,7 +306,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: linux_suffixes_musl.clone(),
install_only_suffix: "lto",
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
python_version_requirement: None,
conditional_suffixes: vec![],
},
);
Expand Down