summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-05-02 22:22:51 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-05-02 22:22:51 (GMT)
commit7173dac61b183e2b100bc820a626b70f63ae0da7 (patch)
treed08e43fa19508b4496ab2be509aa25223a40d7ba /Tools
parent3b85377ab5832e8d82686a526a93d1ca013569cd (diff)
downloadcpython-7173dac61b183e2b100bc820a626b70f63ae0da7.zip
cpython-7173dac61b183e2b100bc820a626b70f63ae0da7.tar.gz
cpython-7173dac61b183e2b100bc820a626b70f63ae0da7.tar.bz2
Update Windows installer for new CRT version.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
index 9b41cee..ac92b2f 100644
--- a/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
+++ b/Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp
@@ -2343,7 +2343,7 @@ private:
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 @@ private:
BOOL result = FALSE;
if (VerQueryValueW(pData, L"\\", (LPVOID*)&ffi, &cb) &&
- ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C00000) {
+ ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C40000) {
result = TRUE;
}