You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
This is a regression of #46127 and was introduced a few months after the original fix merged
See that bug for more details about how to reproduce the issue
Additional context
This commit made a change to cache the installed list using pip.list to speed up pip execution. However, the call to pip list does not pass env_vars(see 3003.1 code here) and hence the bug has reappeared.
Description
This is a regression of #46127 and was introduced a few months after the original fix merged
See that bug for more details about how to reproduce the issue
Additional context
This commit made a change to cache the installed list using
pip.list
to speed up pip execution. However, the call to pip list does not passenv_vars
(see 3003.1 code here) and hence the bug has reappeared.Fix is trivial by passing
env_vars=env_vars
to this function.The text was updated successfully, but these errors were encountered: