Build issues in pip 10.0
vdboor opened this issue · 3 comments
vdboor commented
The import from pip.req import parse_requirements
is no longer available. This causes the setup.py
call to fail on pip 10.0
Since the only requirement is the requests
library, it's probably a better idea to include that directly in setup.py: install_requires=['requests']
Nekmo commented
Thanks for the issue, today it will be solved.
Nekmo commented
Fixed. Thank you for your issue. :)
vdboor commented
Thanks for the quick response!