Require Python '==2.7'
madest92 opened this issue · 3 comments
madest92 commented
I'm having a problem installing the package:
pip2 install -U -e git+https://github.com/python-diamond/Diamond.git#egg=diamond
Obtaining diamond from git+https://github.com/python-diamond/Diamond.git#egg=diamond
Updating /src/diamond clone
diamond requires Python '==2.7' but the running Python is 2.7.13
NotSqrt commented
It seems the line python_requires='==2.7',
in setup.py, would be better as ~= 2.7
maybe ?
nameprabhat commented
Yes it works after changing it to ~= 2.7 in setup.py
shortdudey123 commented
Closed by #718