forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update CI to use pip v19+ #4089
Labels
debt
Covers everything internal: CI, testing, refactoring of the codebase, etc.
Comments
d3r3kk
added
needs PR
debt
Covers everything internal: CI, testing, refactoring of the codebase, etc.
labels
Jan 22, 2019
This was referenced Jan 22, 2019
Merged
Upstream issue pypa/pip#6158 Once that is resolved (or guidance for how to properly resolve it is obtained) then we can stop pinning |
19.01 is up now, should check if this works now. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The update to pip v19.0 has caused our current CI pipelines to stop working (see #4082). We need to update our CI scripts to not pin
pip<19
for the long term.The gulp script that runs
installPythonLibs
falls over when installingPTVSD
for example, as it uses two flags that are not usable in this version ofpip
:Flag 1:
--disable-version-check
Running this in a shell with pip 19.0 installed:
results in this:
Flag 2:
--no-cache-dir
Running this in a shell with pip 19.0 installed:
results in this:
This breaks the installed version of
pip
here:The text was updated successfully, but these errors were encountered: