There was an error while loading. Please reload this page.
1 parent 1d2a387 commit 645fa19Copy full SHA for 645fa19
2 files changed
Lib/distutils/command/bdist_wininst.py
@@ -338,8 +338,8 @@ def get_exe_bytes(self):
338
bv = '14.0'
339
else:
340
bv = '.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2])
341
- if bv == '14.11':
342
- # v141 and v140 are binary compatible,
+ if bv in ('14.11', '14.12'):
+ # v142, v141 and v140 are binary compatible,
343
# so keep using the 14.0 stub.
344
345
Misc/NEWS.d/next/Library/2017-12-13-22-38-08.bpo-32302.othtTr.rst
@@ -0,0 +1,2 @@
1
+Fix bdist_wininst of distutils for CRT v142: it binary compatible with CRT
2
+v140.
0 commit comments