[issue38927] venv --upgrade_deps fails on Windows

2019-11-27 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue38927] venv --upgrade_deps fails on Windows

2019-11-27 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset d9aa216d49423d58e192cd7a25016f90fe771ce7 by Vinay Sajip (Tzu-ping Chung) in branch 'master': bpo-38927: Use python -m pip to upgrade venv deps (GH-17403) https://github.com/python/cpython/commit/d9aa216d49423d58e192cd7a25016f90fe771ce7

[issue38927] venv --upgrade_deps fails on Windows

2019-11-27 Thread Brett Cannon
Change by Brett Cannon : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38927] venv --upgrade_deps fails on Windows

2019-11-27 Thread Tzu-ping Chung
Change by Tzu-ping Chung : -- keywords: +patch pull_requests: +16883 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17403 ___ Python tracker ___

[issue38927] venv --upgrade_deps fails on Windows

2019-11-27 Thread Tzu-ping Chung
New submission from Tzu-ping Chung : https://github.com/python/cpython/commit/4acdbf11b1fae1af24c47413a6caa593010d1b6f EnvBuilder.upgrade_dependencies() uses `pip.exe install -U` to upgrade pip, which fails on Windows with `[WinError 5] Access is denied`. -- components: Library