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

miss-islington webhook-mailer at python.org
Wed Apr 7 08:33:02 EDT 2021


https://github.com/python/cpython/commit/d0e858d82d493d5341d80f34c7a09094e27ea0ce
commit: d0e858d82d493d5341d80f34c7a09094e27ea0ce
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2021-04-07T05:32:50-07:00
summary:

Improve CDN purge script (GH-25251)

(cherry picked from commit e35dd556e1adb4fc8b83e5b75ac59e428a8b5460)

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