Skip to content

Commit 584d07b

Browse files
committed
release: only release ppc64le distributions for Python 3.9+
Fixes a bug in the release process.
1 parent f0a3599 commit 584d07b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/release.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
101101
TripleRelease {
102102
suffixes: linux_suffixes_nopgo.clone(),
103103
install_only_suffix: "lto",
104-
python_version_requirement: None,
104+
python_version_requirement: Some(VersionReq::parse(">=3.9").unwrap()),
105105
},
106106
);
107107

0 commit comments

Comments
 (0)