diff options
author | Tzu-ping Chung <uranusjr@gmail.com> | 2019-11-27 20:25:23 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-11-27 20:25:23 (GMT) |
commit | d9aa216d49423d58e192cd7a25016f90fe771ce7 (patch) | |
tree | e3dcb2af842f37a946245d2aac3eaf6f11d0130f /Lib/venv | |
parent | 045d4e243d042638bbbc9479d4f85f6f579ac3ca (diff) | |
download | cpython-d9aa216d49423d58e192cd7a25016f90fe771ce7.zip cpython-d9aa216d49423d58e192cd7a25016f90fe771ce7.tar.gz cpython-d9aa216d49423d58e192cd7a25016f90fe771ce7.tar.bz2 |
bpo-38927: Use python -m pip to upgrade venv deps (GH-17403)
I suggest you add `bpo-NNNNN: ` as a prefix for the first commit for future PRs. Thanks!
Diffstat (limited to 'Lib/venv')
-rw-r--r-- | Lib/venv/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/venv/__init__.py b/Lib/venv/__init__.py index 4ab9cc6..81cb1d1 100644 --- a/Lib/venv/__init__.py +++ b/Lib/venv/__init__.py @@ -393,10 +393,10 @@ class EnvBuilder: f'Upgrading {CORE_VENV_DEPS} packages in {context.bin_path}' ) if sys.platform == 'win32': - pip_exe = os.path.join(context.bin_path, 'pip.exe') + python_exe = os.path.join(context.bin_path, 'python.exe') else: - pip_exe = os.path.join(context.bin_path, 'pip') - cmd = [pip_exe, 'install', '-U'] + python_exe = os.path.join(context.bin_path, 'python') + cmd = [python_exe, '-m', 'pip', 'install', '--upgrade'] cmd.extend(CORE_VENV_DEPS) subprocess.check_call(cmd) |