diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce803392..7a06d07e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,6 +21,7 @@ env: permissions: contents: write packages: write + releases: wrte # Permissions used for actions/attest-build-provenance id-token: write attestations: write diff --git a/src/release.rs b/src/release.rs index 10e562ca..9d6ec083 100644 --- a/src/release.rs +++ b/src/release.rs @@ -274,13 +274,12 @@ pub static RELEASE_TRIPLES: Lazy> = 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![], }, ); @@ -289,7 +288,7 @@ pub static RELEASE_TRIPLES: Lazy> = 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![], }, ); @@ -298,7 +297,7 @@ pub static RELEASE_TRIPLES: Lazy> = 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![], }, ); @@ -307,7 +306,7 @@ pub static RELEASE_TRIPLES: Lazy> = 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![], }, );