Skip to content

Commit 662782e

Browse files
authored
gh-96729: Ensure installers built with Tools/msi/buildrelease.bat have matching UUIDs with official releases (GH-96755)
1 parent 53a54b7 commit 662782e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Ensure that Windows releases built with ``Tools\msi\buildrelease.bat`` are
2+
upgradable to and from official Python releases.

Tools/msi/buildrelease.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ rem
1212
rem The following substitutions will be applied to the release URI:
1313
rem Variable Description Example
1414
rem {arch} architecture amd64, win32
15-
set RELEASE_URI=https://www.python.org/{arch}
15+
rem Do not change the scheme to https. Otherwise, releases built with this
16+
rem script will not be upgradable to/from official releases of Python.
17+
set RELEASE_URI=http://www.python.org/{arch}
1618

1719
rem This is the URL that will be used to download installation files.
1820
rem The files available from the default URL *will* conflict with your

0 commit comments

Comments
 (0)