- Specifying minimum version numbers in
pyproject.toml
andsetup.py
. - Compiled with Cython 0.29.5.
- Using the
pyproject.toml
standard set forth in PEP 518, NumPy will now be correctly installed as a dependency prior to runningsetup.py
.
- Fixing NumPy-related install error. (courtesy @simobasso)
- Enabling Python 3.7 unit tests in Travis.
- Compiled with Cython 0.29.2.
- Allow tuples and lists as input. (courtesy @internaut)
- Dropped support of EOL Python versions (2.6, 3.2, and 3.3). (courtesy @internaut)
- Fixed a possible division-by-zero exception. (courtesy @internaut)
- Fixed a formatting error in an exception message. (courtesy @internaut)
- Compiled with Cython 0.27.3.
- Clarified that this implementation is of the optimal string alignment distance algorithm (see this issue for more information).
- Renamed
damerau_levenshtein_distance_withNPArray
todamerau_levenshtein_distance_ndarray
andnormalized_damerau_levenshtein_distance_withNPArray
tonormalized_damerau_levenshtein_distance_ndarray
. - Cleaned up
np.ndarray
type and dimension checks. - Simplified NumPy functions using
np.vectorize
. - Hardened unicode conversion using Cython's recommendations.
- Compiled with Cython 0.24.1.
- @mittagessen fixed a bug in
setup.py
that assumed NumPy was installed in this PR.
- @ovarene added the ability to compute the edit distance between a string and each string in a NumPy array in this PR.
- Compiled with Cython 0.22.
- Changed
xrange
torange
in pyx code. - Compiled with Cython 0.20.1.
- Moving to setuptools (using ez_setup.py to manage it).
- Performance improvement for short-circuit.
- Changed
unsigned int
toPy_ssize_t
(for 64-bit compatability). - Improved readability (defined offset indices for
storage
).
- Fixed Python 3 unicode issue (thanks to Stefan Behnel - https://groups.google.com/d/msg/cython-users/ofT3fo48ohs/rrf3dtbHkm4J).
- Fixed a possible memory leak (thanks to Stefan Behnel).
- Examples are now Python 3-compatible.
- Initial release.