Skip to content
This repository has been archived by the owner on Dec 15, 2018. It is now read-only.

Error due to PIP changes in PIP 10. #228

Open
ghost opened this issue Oct 28, 2018 · 1 comment
Open

Error due to PIP changes in PIP 10. #228

ghost opened this issue Oct 28, 2018 · 1 comment

Comments

@ghost
Copy link

ghost commented Oct 28, 2018

I had to change this in setup.py:

from pip.req import parse_requirements
To this

    from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
    from pip.req import parse_requirements```
@nullpixel
Copy link
Contributor

nullpixel commented Oct 28, 2018

No longer part of this project, but a relevant PR is #227 - perhaps try that out? This project is considered dead as far as I'm aware anyway.

# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Development

No branches or pull requests

1 participant