[Python-checkins] cpython: Update Windows installer for new CRT version.
steve.dower
python-checkins at python.org
Sun May 3 00:33:33 CEST 2015
https://hg.python.org/cpython/rev/b232f29efe1a
changeset: 95851:b232f29efe1a
parent: 95849:cc6aed8ecb0d
user: Steve Dower <steve.dower at microsoft.com>
date: Sat May 02 15:22:51 2015 -0700
summary:
Update Windows installer for new CRT version.
files:
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
--- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
+++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
@@ -2343,7 +2343,7 @@
return FALSE;
}
- // Check whether at least CRT v10.0.9920.0 is available.
+ // Check whether at least CRT v10.0.9924.0 is available.
// It should only be installed as a Windows Update package, which means
// we don't need to worry about 32-bit/64-bit.
// However, since the WU package does not include vcruntime140.dll, we
@@ -2373,7 +2373,7 @@
BOOL result = FALSE;
if (VerQueryValueW(pData, L"\\", (LPVOID*)&ffi, &cb) &&
- ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C00000) {
+ ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C40000) {
result = TRUE;
}
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list