[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset 2ed0ac6bf17d599bc246c513c32710c154e50a64 by Steve Dower (Miss Islington (bot)) in branch '3.8': bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849) https://github.com/python/cpython/commit/2ed0ac6bf1

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
Steve Dower added the comment: New changeset 0fccd4ab5b2238b6340901dd0023a1a157852792 by Steve Dower in branch '3.7': bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849) https://github.com/python/cpython/commit/0fccd4ab5b2238b6340901dd0023a1a15

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- pull_requests: +15504 pull_request: https://github.com/python/cpython/pull/15857 ___ Python tracker ___ _

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +15503 pull_request: https://github.com/python/cpython/pull/15856 ___ Python tracker ___ __

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Zachary Ware
Zachary Ware added the comment: New changeset cd8221152dd235ec5d06e3d9d0d8787645bbac8e by Zachary Ware (Steve Dower) in branch 'master': bpo-38088: Fixes distutils not finding vcruntime140.dll with only v142 toolset installed (GH-15849) https://github.com/python/cpython/commit/cd8221152dd235

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +15498 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15849 ___ Python tracker ___

[issue38088] distutils cannot locate vcruntime140.dll with only VS 2019 installed

2019-09-10 Thread Steve Dower
New submission from Steve Dower : Because we are only looking for the VC141 redistributable, if we only have VC142 available then we won't find it. We should expand the glob() call to allow VC14?\vcruntime140.dll. -- assignee: steve.dower components: Distutils, Windows messages: 35163