File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### v0.25.1
4+ #### Fixed
5+ - fix potentially incorrect results of ` jaro_winkler ` when using high prefix weights
6+
37### v0.25.0
48#### Changed
59- improve type hints
Original file line number Diff line number Diff line change 77
88setup (
99 name = "Levenshtein" ,
10- version = "0.25.0 " ,
10+ version = "0.25.1 " ,
1111 url = "https://github.com/rapidfuzz/Levenshtein" ,
1212 author = "Max Bachmann" ,
13- install_requires = ["rapidfuzz >= 3.1 .0, < 4.0.0" ],
13+ install_requires = ["rapidfuzz >= 3.8 .0, < 4.0.0" ],
1414 author_email = "pypi@maxbachmann.de" ,
1515 description = "Python extension for computing string edit distances and similarities." ,
1616 long_description = readme ,
Original file line number Diff line number Diff line change 1818
1919__author__ : str = "Max Bachmann"
2020__license__ : str = "GPL"
21-
22- import importlib .metadata
21+ __version__ : str = "0.25.1"
2322
2423import rapidfuzz .distance .Hamming as _Hamming
2524import rapidfuzz .distance .Indel as _Indel
4241 setratio ,
4342)
4443
45- try :
46- __version__ : str = importlib .metadata .version (__package__ or __name__ )
47- except importlib .metadata .PackageNotFoundError :
48- __version__ : str = "0.0.0"
49-
5044__all__ = [
5145 "quickmedian" ,
5246 "median" ,
You can’t perform that action at this time.
0 commit comments