ejdb-python
ejdb-python copied to clipboard
fixed python version checking in setup.py
python version checking when installing use to use string comparison which found 2.7.11 < 2.7.2 and would fail to install after 2.7.9. This fix splits the strings on the . and then uses an int comparison on the parts.