Unverified Kaydet (Commit) 9e7c136a authored tarafından Victor Stinner's avatar Victor Stinner Kaydeden (comit) GitHub

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

CRT v142 is binary compatible with CRT v140.
üst 7ea143ae
......@@ -338,8 +338,8 @@ class bdist_wininst(Command):
bv = '14.0'
else:
bv = '.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2])
if bv == '14.11':
# v141 and v140 are binary compatible,
if bv in ('14.11', '14.12'):
# v142, v141 and v140 are binary compatible,
# so keep using the 14.0 stub.
bv = '14.0'
......
Fix bdist_wininst of distutils for CRT v142: it binary compatible with CRT
v140.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment