You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The most recent version of fuzzyset on pypi does not match any commit.
As of March 5 of this year, version 0.19.0 is the most recent version on PyPi. This seems to be one patch version ahead of the most recent commit on master, which bumped the version to 0.0.18.
Running a diff shows the PyPI version contains a difference on the _distance function of both cFuzzySet and fuzzySet (as well as a large difference in the .C file, but that may simply be a result of re-running cython).
Version 0.19.0 seems to introduce a performance regression due to recomputing the levenshtein distance twice in the fuzzySet implementation. Specifically, _distance function now reads:
The most recent version of fuzzyset on pypi does not match any commit.
As of March 5 of this year, version 0.19.0 is the most recent version on PyPi. This seems to be one patch version ahead of the most recent commit on master, which bumped the version to 0.0.18.
Running a diff shows the PyPI version contains a difference on the
_distance
function of bothcFuzzySet
andfuzzySet
(as well as a large difference in the.C
file, but that may simply be a result of re-running cython).Version 0.19.0 seems to introduce a performance regression due to recomputing the levenshtein distance twice in the
fuzzySet
implementation. Specifically,_distance
function now reads:The text was updated successfully, but these errors were encountered: