Closed w4-jaesup closed 6 years ago
pip3 install git-lint
is trying to install dependency futures even for python 3. Fix would be to remove futures from install_requires in setup.py
futures
setup.py
Not removed but just add the dep as extras_require={':python_version == "2.7"': ['futures']}
extras_require={':python_version == "2.7"': ['futures']}
Thanks for the report and the PR.
It's fixed now. I deployed version 0.1.1 to pypi.
is trying to install dependency
futures
even for python 3. Fix would be to removefutures
from install_requires insetup.py