-
Notifications
You must be signed in to change notification settings - Fork 96
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
pip 19.3 breaks pip2pi 0.8.1 #94
Comments
I can confirm this. Downgrading is not really an easy option for me. |
First time trying to run this and encountering this issue too -- considering pip's API isn't public, and that all a quick look at the code seems to suggest is that the implementation here assembles command line arguments, is there a reason that doesn't just get executed as a subprocess (and therefore use pip's public API)? |
I have created a PR that fixes this issue, this commit broke pip2pi pypa/pip@09fd200 as they moved the main function into a main module. I'm guessing the issue with having a subprocess is that you'd have to know what the alias for pip is, it could be pip or pip3 or pip3.8 or probably pip could not have an alias on the system depending on how it was installed, just a wild guess. |
This is probably the best way to call pip as a subprocess:
|
Created #100 for a longer-term solution. |
The latest version of pip (19.3) breaks pip2pi:
For now, rolling back to pip 19.2.3 has fixed the problem.
The text was updated successfully, but these errors were encountered: