https://github.com/python/cpython/commit/76b22978bcca4a9607523ba36b9c04ec3ba119bd
commit: 76b22978bcca4a9607523ba36b9c04ec3ba119bd
branch: main
author: adang1345 <[email protected]>
committer: zooba <[email protected]>
date: 2025-09-17T14:32:52+01:00
summary:

gh-138896: Fix error installing C runtime on non-updated Windows machines 
(GH-138932)

files:
A Misc/NEWS.d/next/Windows/2025-09-15-15-34-29.gh-issue-138896.lkiF_7.rst
M Tools/msi/bundle/bundle.wxs

diff --git 
a/Misc/NEWS.d/next/Windows/2025-09-15-15-34-29.gh-issue-138896.lkiF_7.rst 
b/Misc/NEWS.d/next/Windows/2025-09-15-15-34-29.gh-issue-138896.lkiF_7.rst
new file mode 100644
index 00000000000000..018bf20aeb9fe4
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2025-09-15-15-34-29.gh-issue-138896.lkiF_7.rst
@@ -0,0 +1 @@
+Fix error installing C runtime on non-updated Windows machines
diff --git a/Tools/msi/bundle/bundle.wxs b/Tools/msi/bundle/bundle.wxs
index abfeb88784890c..3fcb00553f5edd 100644
--- a/Tools/msi/bundle/bundle.wxs
+++ b/Tools/msi/bundle/bundle.wxs
@@ -106,11 +106,11 @@
     <Variable Name="SimpleInstallDescription" Value="" bal:Overridable="yes" />
 
     <Chain ParallelCache="yes">
+      <PackageGroupRef Id="core" />
+      <PackageGroupRef Id="exe" />
       <?if $(var.Platform)!="ARM64" ?>
       <PackageGroupRef Id="crt" />
       <?endif ?>
-      <PackageGroupRef Id="core" />
-      <PackageGroupRef Id="exe" />
       <PackageGroupRef Id="dev" />
       <PackageGroupRef Id="lib" />
       <?if $(var.IncludeFreethreaded)~="true" ?>

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to