diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2017-12-14 11:39:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-14 11:39:34 +0100 |
| commit | b0138c4df9e3d287a5a2995be53746c9d0581725 (patch) | |
| tree | a5dde5e72b7c4e9f80e2b0753d12dd9656421b33 | |
| parent | cba37f7ece298acceaa5506d24548f6ec039c9b3 (diff) | |
| download | external_python_setuptools-b0138c4df9e3d287a5a2995be53746c9d0581725.tar.gz external_python_setuptools-b0138c4df9e3d287a5a2995be53746c9d0581725.tar.bz2 external_python_setuptools-b0138c4df9e3d287a5a2995be53746c9d0581725.zip | |
bpo-32302: Fix distutils bdist_wininst for CRT v142 (#4851)
CRT v142 is binary compatible with CRT v140.
| -rw-r--r-- | command/bdist_wininst.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command/bdist_wininst.py b/command/bdist_wininst.py index 6309c3e2..83f00732 100644 --- a/command/bdist_wininst.py +++ b/command/bdist_wininst.py @@ -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' |
