We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, currently the 0.0.2 release tries to "from pip.req import parse_requirements", that should be changed to try both the new and old ways:
try: # for pip >= 10 from pip._internal.req import parse_requirements except ImportError: # for pip <= 9.0.3 from pip.req import parse_requirements
I actually tried forking to make a PR but am unable to install this from git.. how do you install the version in git via pip?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, currently the 0.0.2 release tries to "from pip.req import parse_requirements", that should be changed to try both the new and old ways:
I actually tried forking to make a PR but am unable to install this from git.. how do you install the version in git via pip?
The text was updated successfully, but these errors were encountered: