-
-
Notifications
You must be signed in to change notification settings - Fork 611
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-tools is not compatible with pip >= 10.0.0 #648
Comments
|
Hi @cyrilleverrier, thanks for taking the time to report. We've got that covered in #580 and the solution is current merged in master, you can test it out if you want. It'll be released in (Keeping open for now, as I expect others to hit this.) |
Thanks @vphilippon. Looking forward to testing it. |
Is there an expected release date for 2.0? I'm just trying to triage updating lots of projects to pin the pip version as all our builds have just started failing :( |
I'm getting on it right away. Thanks for the notification |
FYI 2.0.1 coming up shortly: There was missing package_data in there, which will make pip-compile fail with an error like:
|
pip-tools 2.0.1 is out, everything should be working even with pip 10.0.0. |
wow awesome! thats saved me a huge headache, really appreciated! |
pip-tools is not compatible with pip >= 10.0.0
Environment Versions
Linux/Ubuntu
Python 2.7.12
$ pip 10.0.0b2
$ pip-compile, version 1.11.0
Steps to replicate
. /usr/share/virtualenvwrapper/virtualenvwrapper.sh
mkvirtualenv -p /usr/bin/python2 test-pip-tools 3.
(test-pip-tools) pip install -U pip ``(test-pip-tools) pip install pip-tools
echo Flask > requirements.in
(test-pip-tools) pip-compile requirements.in
Expected result
six
python package is installedActual result
Workaround
(test-pip-tools) pip install -U pip==9.0.3
The text was updated successfully, but these errors were encountered: