This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: venv --upgrade_deps fails on Windows
Type: Stage: resolved
Components: Library (Lib), Windows Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: paul.moore, steve.dower, tim.golden, uranusjr, vinay.sajip, zach.ware
Priority: normal Keywords: patch

Created on 2019-11-27 09:18 by uranusjr, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 17403 merged uranusjr, 2019-11-27 09:44
Messages (2)
msg357562 - (view) Author: Tzu-ping Chung (uranusjr) * Date: 2019-11-27 09:18
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`.
msg357585 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2019-11-27 20:25
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
History
Date User Action Args
2022-04-11 14:59:23adminsetgithub: 83108
2019-11-27 20:26:56vinay.sajipsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-11-27 20:25:28vinay.sajipsetmessages: + msg357585
2019-11-27 17:29:47brett.cannonsetnosy: + vinay.sajip
2019-11-27 09:44:11uranusjrsetkeywords: + patch
stage: patch review
pull_requests: + pull_request16883
2019-11-27 09:18:12uranusjrcreate