ejdb-python
ejdb-python copied to clipboard
Unable to install, Python > 2.7.10, OS X
Well, the problem is in the file setup.py, the version check is comparing strings:
if py_ver < min_py_vers[int(py_ver[0])]: raise SystemExit("Aborted: EJDB requires Python >= {0}".format(min_py_vers[int(py_ver[0])]))
In my case, "2.7.10" < "2.7.2" returns True, so the check does not pass and the SystemExit is raised.
Pull request #12 solves this issue.