[Python-checkins] Improve CDN purge script (GH-25251) (#25254)

orsenthil webhook-mailer at python.org
Sun Apr 25 11:19:37 EDT 2021


https://github.com/python/cpython/commit/2178afffc0e94613ff41baf7ce2d4bea94278a47
commit: 2178afffc0e94613ff41baf7ce2d4bea94278a47
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-04-25T08:19:32-07:00
summary:

Improve CDN purge script (GH-25251) (#25254)

(cherry picked from commit e35dd556e1adb4fc8b83e5b75ac59e428a8b5460)

Co-authored-by: Steve Dower <steve.dower at python.org>

Co-authored-by: Steve Dower <steve.dower at python.org>

files:
M Tools/msi/purge.py

diff --git a/Tools/msi/purge.py b/Tools/msi/purge.py
index a8b8f4d8973c4..c543cac30aad3 100644
--- a/Tools/msi/purge.py
+++ b/Tools/msi/purge.py
@@ -65,7 +65,10 @@
     "python-{}-webinstall.exe".format(m.group(0)),
     "python-{}-amd64.exe".format(m.group(0)),
     "python-{}-amd64-webinstall.exe".format(m.group(0)),
+    "python-{}-embed-amd64.zip".format(m.group(0)),
+    "python-{}-embed-win32.zip".format(m.group(0)),
 ] + ["win32{}/{}".format(REL, f) for f in FILES] + ["amd64{}/{}".format(REL, f) for f in FILES]
+PATHS = PATHS + [p + ".asc" for p in PATHS]
 
 print('Purged:')
 for n in PATHS:



More information about the Python-checkins mailing list