Skip to content

Commit

Permalink
Drop 3.14 from expected Windows release targets (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored Jan 6, 2025
1 parent b93ab5f commit 3a8ea4a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/release.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,13 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
);

// Windows.
// TODO: Python 3.14 support on Windows
h.insert(
"i686-pc-windows-msvc",
TripleRelease {
suffixes: vec!["pgo"],
install_only_suffix: "pgo",
python_version_requirement: None,
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
conditional_suffixes: vec![ConditionalSuffixes {
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
suffixes: vec!["freethreaded+pgo"],
Expand All @@ -122,7 +123,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: vec!["pgo"],
install_only_suffix: "pgo",
python_version_requirement: None,
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
conditional_suffixes: vec![ConditionalSuffixes {
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
suffixes: vec!["freethreaded+pgo"],
Expand All @@ -137,7 +138,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: vec!["pgo"],
install_only_suffix: "pgo",
python_version_requirement: None,
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
conditional_suffixes: vec![ConditionalSuffixes {
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
suffixes: vec!["freethreaded+pgo"],
Expand All @@ -149,7 +150,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
TripleRelease {
suffixes: vec!["pgo"],
install_only_suffix: "pgo",
python_version_requirement: None,
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
conditional_suffixes: vec![ConditionalSuffixes {
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
suffixes: vec!["freethreaded+pgo"],
Expand Down

0 comments on commit 3a8ea4a

Please sign in to comment.