bpo-32302: Fix distutils bdist_wininst for CRT v142 (#4851)

CRT v142 is binary compatible with CRT v140.
This commit is contained in:
Victor Stinner 2017-12-14 11:39:34 +01:00 committed by GitHub
parent 7ea143ae79
commit 9e7c136ad8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -338,8 +338,8 @@ class bdist_wininst(Command):
bv = '14.0' bv = '14.0'
else: else:
bv = '.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2]) bv = '.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2])
if bv == '14.11': if bv in ('14.11', '14.12'):
# v141 and v140 are binary compatible, # v142, v141 and v140 are binary compatible,
# so keep using the 14.0 stub. # so keep using the 14.0 stub.
bv = '14.0' bv = '14.0'

View File

@ -0,0 +1,2 @@
Fix bdist_wininst of distutils for CRT v142: it binary compatible with CRT
v140.