diff options
author | Steve Dower <steve.dower@python.org> | 2020-07-28 15:35:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-28 15:35:46 (GMT) |
commit | 37a06cbe5c17c2aa6ad938339fd42531a8a0bea0 (patch) | |
tree | 31cce5032c872a64a8904b7c48952fd0235ec548 /Tools/msi/bundle/packagegroups | |
parent | 5e3826785dcc64f8e1a8a7bde11b88fbb40943be (diff) | |
download | cpython-37a06cbe5c17c2aa6ad938339fd42531a8a0bea0.zip cpython-37a06cbe5c17c2aa6ad938339fd42531a8a0bea0.tar.gz cpython-37a06cbe5c17c2aa6ad938339fd42531a8a0bea0.tar.bz2 |
bpo-41412 and bpo-40948: Windows installer updates (GH-21656)
Prevent installation on Windows 8 and earlier.
Download UCRT on demand when required (non-updated Windows 8.1 only)
Add reference to py launcher to post-install message
Diffstat (limited to 'Tools/msi/bundle/packagegroups')
-rw-r--r-- | Tools/msi/bundle/packagegroups/crt.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/bundle/packagegroups/crt.wxs b/Tools/msi/bundle/packagegroups/crt.wxs index 61b756f..f931da1 100644 --- a/Tools/msi/bundle/packagegroups/crt.wxs +++ b/Tools/msi/bundle/packagegroups/crt.wxs @@ -4,7 +4,7 @@ <PackageGroup Id="crt"> <MsiPackage Id="ucrt_AllUsers" SourceFile="ucrt.msi" - Compressed="$(var.CompressMSI)" + Compressed="no" DownloadUrl="$(var.DownloadUrl)" ForcePerMachine="yes" InstallCondition="InstallAllUsers and not CRTInstalled and (Include_core or Include_exe or Include_pip) and not LauncherOnly"> @@ -12,7 +12,7 @@ </MsiPackage> <MsiPackage Id="ucrt_JustForMe" SourceFile="ucrt.msi" - Compressed="$(var.CompressMSI)" + Compressed="no" DownloadUrl="$(var.DownloadUrl)" ForcePerMachine="no" InstallCondition="not InstallAllUsers and not CRTInstalled and (Include_core or Include_exe or Include_pip) and not LauncherOnly"> |