[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset 58a7f809ac978ed54034b7b48f2ea64000aa4661 by Miss Islington (bot) in branch '3.7': bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253) https://github.com/python/cpython/commit/58a7f809ac978ed54034b7b48f2ea64000aa4661 --

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15409 pull_request: https://github.com/python/cpython/pull/15756 ___ Python tracker ___

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-17 Thread Steve Dower
Change by Steve Dower : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread miss-islington
miss-islington added the comment: New changeset 853eecc7692503fec8240fd9a74d9f88e0392630 by Miss Islington (bot) in branch '3.8': bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253) https://github.com/python/cpython/commit/853eecc7692503fec8240fd9a74d9f88e0392630 --

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +14976 pull_request: https://github.com/python/cpython/pull/15257 ___ Python tracker ___

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread Steve Dower
Steve Dower added the comment: New changeset b0dace3e979381426385c551b116d0f1434096ee by Steve Dower in branch 'master': bpo-37841: Remove python_uwp dependency on msvcp140.dll (GH-15253) https://github.com/python/cpython/commit/b0dace3e979381426385c551b116d0f1434096ee --

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread Steve Dower
Change by Steve Dower : -- keywords: +patch pull_requests: +14974 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/15253 ___ Python tracker

[issue37841] Python store app launcher has dependency on msvcp140.dll

2019-08-13 Thread Steve Dower
New submission from Steve Dower : A change made to the python_uwp.vcxproj (or more likely the .cpp file) has introduced a runtime dependency on msvcp140.dll. As we don't distribute this dependency, and it is not always installed by default, we should statically link it instead. --