Skip to content

Commit 68d6017

Browse files
committed
Remove redundant code for EOL Python 3.8
1 parent 398bcbd commit 68d6017

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

add_to_pydotorg.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ def run_cmd(
8181

8282
# Update this list when new release managers are added.
8383
release_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

Comments
 (0)