Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7173dac

Browse files
committed
Update Windows installer for new CRT version.
1 parent 3b85377 commit 7173dac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2343,7 +2343,7 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
23432343
return FALSE;
23442344
}
23452345

2346-
// Check whether at least CRT v10.0.9920.0 is available.
2346+
// Check whether at least CRT v10.0.9924.0 is available.
23472347
// It should only be installed as a Windows Update package, which means
23482348
// we don't need to worry about 32-bit/64-bit.
23492349
// However, since the WU package does not include vcruntime140.dll, we
@@ -2373,7 +2373,7 @@ class PythonBootstrapperApplication : public CBalBaseBootstrapperApplication {
23732373
BOOL result = FALSE;
23742374

23752375
if (VerQueryValueW(pData, L"\\", (LPVOID*)&ffi, &cb) &&
2376-
ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C00000) {
2376+
ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C40000) {
23772377
result = TRUE;
23782378
}
23792379

0 commit comments

Comments
 (0)