[issue32302] test_distutils: test_get_exe_bytes() failure on AppVeyor

Steve Dower report at bugs.python.org
Wed Dec 13 11:42:41 EST 2017


Steve Dower <steve.dower at python.org> added the comment:

This is the bit that needs fixing https://github.com/python/cpython/blob/master/Lib/distutils/command/bdist_wininst.py#L340

                bv = '.'.join(CRT_ASSEMBLY_VERSION.split('.', 2)[:2])
                if bv == '14.11':
                    # v141 and v140 are binary compatible,
                    # so keep using the 14.0 stub.
                    bv = '14.0'

AppVeyor has clearly gotten hold of 14.12, which should also be binary compatible (version numbers here are not strictly SemVer, but the 14 indicates binary compatibility).

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue32302>
_______________________________________


More information about the Python-bugs-list mailing list