]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve CDN purge script (GH-25251)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 7 Apr 2021 12:32:50 +0000 (05:32 -0700)
committerGitHub <noreply@github.com>
Wed, 7 Apr 2021 12:32:50 +0000 (05:32 -0700)
(cherry picked from commit e35dd556e1adb4fc8b83e5b75ac59e428a8b5460)

Co-authored-by: Steve Dower <steve.dower@python.org>
Tools/msi/purge.py

index a8b8f4d8973c40490ad84c09da4a80c7f9f764b9..c543cac30aad33d57b7d1a75b6c1b60180dd3acb 100644 (file)
@@ -65,7 +65,10 @@ PATHS = [
     "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: