Skip to content

Commit 9023b79

Browse files
authored
Add Python 3.14 to Windows release targets (#497)
This reverts commit 3a8ea4a.
1 parent 658bff8 commit 9023b79

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/release.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,12 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
105105
);
106106

107107
// Windows.
108-
// TODO: Python 3.14 support on Windows
109108
h.insert(
110109
"i686-pc-windows-msvc",
111110
TripleRelease {
112111
suffixes: vec!["pgo"],
113112
install_only_suffix: "pgo",
114-
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
113+
python_version_requirement: None,
115114
conditional_suffixes: vec![ConditionalSuffixes {
116115
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
117116
suffixes: vec!["freethreaded+pgo"],
@@ -123,7 +122,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
123122
TripleRelease {
124123
suffixes: vec!["pgo"],
125124
install_only_suffix: "pgo",
126-
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
125+
python_version_requirement: None,
127126
conditional_suffixes: vec![ConditionalSuffixes {
128127
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
129128
suffixes: vec!["freethreaded+pgo"],
@@ -138,7 +137,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
138137
TripleRelease {
139138
suffixes: vec!["pgo"],
140139
install_only_suffix: "pgo",
141-
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
140+
python_version_requirement: None,
142141
conditional_suffixes: vec![ConditionalSuffixes {
143142
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
144143
suffixes: vec!["freethreaded+pgo"],
@@ -150,7 +149,7 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
150149
TripleRelease {
151150
suffixes: vec!["pgo"],
152151
install_only_suffix: "pgo",
153-
python_version_requirement: Some(VersionSpecifier::from_str("<3.14").unwrap()),
152+
python_version_requirement: None,
154153
conditional_suffixes: vec![ConditionalSuffixes {
155154
python_version_requirement: VersionSpecifier::from_str(">=3.13").unwrap(),
156155
suffixes: vec!["freethreaded+pgo"],

0 commit comments

Comments
 (0)