mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
bpo-33125: Enables building traditional installer for Windows ARM64 (GH-30885)
Also makes a few general improvements to the build process and removes some dead code.
This commit is contained in:
parent
db77bcd609
commit
45faf151c6
47 changed files with 334 additions and 127 deletions
|
|
@ -65,9 +65,15 @@ PATHS = [
|
|||
"python-{}-webinstall.exe".format(m.group(0)),
|
||||
"python-{}-amd64.exe".format(m.group(0)),
|
||||
"python-{}-amd64-webinstall.exe".format(m.group(0)),
|
||||
"python-{}-arm64.exe".format(m.group(0)),
|
||||
"python-{}-arm64-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]
|
||||
"python-{}-embed-arm64.zip".format(m.group(0)),
|
||||
*["win32{}/{}".format(REL, f) for f in FILES],
|
||||
*["amd64{}/{}".format(REL, f) for f in FILES],
|
||||
*["arm64{}/{}".format(REL, f) for f in FILES],
|
||||
]
|
||||
PATHS = PATHS + [p + ".asc" for p in PATHS]
|
||||
|
||||
print('Purged:')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue