Skip to content

Commit

Permalink
pythongh-96729: Ensure installers built with Tools/msi/buildrelease.b…
Browse files Browse the repository at this point in the history
…at have matching UUIDs with official releases (pythonGH-96755)

(cherry picked from commit 662782e)

Co-authored-by: adang1345 <[email protected]>
  • Loading branch information
miss-islington and adang1345 authored Sep 12, 2022
1 parent 9b71058 commit 4e1303b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Ensure that Windows releases built with ``Tools\msi\buildrelease.bat`` are
upgradable to and from official Python releases.
4 changes: 3 additions & 1 deletion Tools/msi/buildrelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ rem
rem The following substitutions will be applied to the release URI:
rem Variable Description Example
rem {arch} architecture amd64, win32
set RELEASE_URI=https://www.python.org/{arch}
rem Do not change the scheme to https. Otherwise, releases built with this
rem script will not be upgradable to/from official releases of Python.
set RELEASE_URI=http://www.python.org/{arch}

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

0 comments on commit 4e1303b

Please sign in to comment.