pytries / datrie

Fast, efficiently stored Trie for Python. Uses libdatrie.
http://pypi.python.org/pypi/datrie/
GNU Lesser General Public License v2.1
530 stars 88 forks source link

Remove workarounds for unsupported Pythons and update docs #63

Closed jdufresne closed 5 years ago

jdufresne commented 5 years ago

Since commit d10efec0089dfe5e7139fc4ab2f00ff3623be0ec, the project only support Python 2.7 and 3.4+. This allows the project to clean up some code by removing a number of workarounds.

Updated the documentation that still referenced old Python versions.

Pass python_requires argument to setuptools to help pip decide what version of the library to install.

See https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires

jdufresne commented 5 years ago

Rebased to resolve merge conflicts.

superbobry commented 5 years ago

Awesome, thanks for rebasing!