jamesturk / jellyfish

🪼 a python library for doing approximate and phonetic matching of strings.
https://jamesturk.github.io/jellyfish/
MIT License
2.04k stars 157 forks source link

remove python2.6 compatibility code #161

Closed maxbachmann closed 2 years ago

maxbachmann commented 2 years ago

I addition this condition was actually always incorrect, since it should have used:

if sys.platform == "win32" and sys.version_info < (2, 7):

instead of

if sys.platform == "win32" and sys.version_info > (2, 6):

which was fixed in simplejson in https://github.com/simplejson/simplejson/commit/687d0e80f377c252451a4067acbcdc2e1db88a00