8000 gh-124102: Update internal PCbuild docs and correct WiX registry by Wulian233 · Pull Request #124784 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-124102: Update internal PCbuild docs and correct WiX registry #124784

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Oct 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
finish
  • Loading branch information
Wulian233 authored Oct 1, 2024
commit 96a6a882465f10248c2e4af49b0ac5ed866f736a
14 changes: 11 additions & 3 deletions Tools/msi/purge.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Purges the Fastly cache for Windows download files
#
# Usage:
# py -3 purge.py 3.13.1rc1
# py -3 purge.py 3.5.1rc1
#

__author__ = 'Steve Dower <steve.dower@python.org>'
Expand All @@ -18,10 +18,10 @@
m = VERSION_RE.match(sys.argv[1])
if not m:
print('Invalid version:', sys.argv[1])
print('Expected something like "3.13.1rc1"')
print('Expected something like "3.5.1rc1"')
sys.exit(1)
except LookupError:
print('Missing version argument. Expected something like "3.13.1rc1"')
print('Missing version argument. Expected something like "3.5.1rc1"')
sys.exit(1)

URL = "https://www.python.org/ftp/python/{}/".format(m.group(1))
Expand Down Expand Up @@ -51,6 +51,14 @@
"test_pdb.msi",
"tools.msi",
"ucrt.msi",
"Windows6.0-KB2999226-x64.msu",
"Windows6.0-KB2999226-x86.msu",
"Windows6.1-KB2999226-x64.msu",
"Windows6.1-KB2999226-x86.msu",
"Windows8.1-KB2999226-x64.msu",
"Windows8.1-KB2999226-x86.msu",
"Windows8-RT-KB2999226-x64.msu",
"Windows8-RT-KB2999226-x86.msu",
]
PATHS = [
"python-{}.exe".format(m.group(0)),
Expand Down
Loading
0