ejdb-python icon indicating copy to clipboard operation
ejdb-python copied to clipboard

Unable to install, Python > 2.7.10, OS X

Open miquelferrarons opened this issue 9 years ago • 1 comments

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.

miquelferrarons avatar Feb 16 '16 16:02 miquelferrarons

Pull request #12 solves this issue.

hitzg avatar Sep 06 '16 20:09 hitzg