mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 09:09:10 -04:00
Merge branch 'fix/tools_pip_upgrade' into 'master'
fix(idf_tools.py): Upgrade pip and setuptools separately Closes RDT-1054 See merge request espressif/esp-idf!35767
This commit is contained in:
commit
82c26fd62e
@ -2660,8 +2660,14 @@ def action_install_python_env(args): # type: ignore
|
||||
|
||||
constraint_file = get_constraints(idf_version) if use_constraints else None
|
||||
|
||||
info('Upgrading pip and setuptools...')
|
||||
run_args = [virtualenv_python, '-m', 'pip', 'install', '--upgrade', 'pip', 'setuptools']
|
||||
info('Upgrading pip...')
|
||||
run_args = [virtualenv_python, '-m', 'pip', 'install', '--upgrade', 'pip']
|
||||
if constraint_file:
|
||||
run_args += ['--constraint', constraint_file]
|
||||
subprocess.check_call(run_args, stdout=sys.stdout, stderr=sys.stderr, env=env_copy)
|
||||
|
||||
info('Upgrading setuptools...')
|
||||
run_args = [virtualenv_python, '-m', 'pip', 'install', '--upgrade', 'setuptools']
|
||||
if constraint_file:
|
||||
run_args += ['--constraint', constraint_file]
|
||||
subprocess.check_call(run_args, stdout=sys.stdout, stderr=sys.stderr, env=env_copy)
|
||||
|
Loading…
x
Reference in New Issue
Block a user