@@ -81,7 +81,6 @@ def run_cmd(
8181
8282# Update this list when new release managers are added.
8383release_to_sigstore_identity_and_oidc_issuer = {
84- "3.8" : ("lukasz@langa.pl" , github_oidc_provider ),
8584 "3.9" : ("lukasz@langa.pl" , github_oidc_provider ),
8685 "3.10" : ("pablogsal@python.org" , google_oidc_provider ),
8786 "3.11" : ("pablogsal@python.org" , google_oidc_provider ),
@@ -134,13 +133,13 @@ def get_file_descriptions(
134133 ),
135134 (
136135 rx (r"-amd64\.exe$" ),
137- ("Windows installer (64-bit)" , "windows" , v >= ( 3 , 9 ) , "Recommended" ),
136+ ("Windows installer (64-bit)" , "windows" , True , "Recommended" ),
138137 ),
139138 (
140139 rx (r"-embed-win32\.zip$" ),
141140 ("Windows embeddable package (32-bit)" , "windows" , False , "" ),
142141 ),
143- (rx (r"\.exe$" ), ("Windows installer (32-bit)" , "windows" , v < ( 3 , 9 ) , "" )),
142+ (rx (r"\.exe$" ), ("Windows installer (32-bit)" , "windows" , False , "" )),
144143 (
145144 rx (r"-macosx10\.5(_rev\d)?\.(dm|pk)g$" ),
146145 (
0 commit comments