File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### v0.20.7
4+ #### Fixed
5+ - type hints did not get installed
6+
37### v0.20.6
48#### Fixed
59- fix incorrect result normalization in ` setratio ` and ` seqratio `
Original file line number Diff line number Diff line change 2222author = 'Max Bachmann'
2323
2424# The full version, including alpha/beta/rc tags
25- release = '0.20.6 '
25+ release = '0.20.7 '
2626
2727# -- General configuration ---------------------------------------------------
2828
Original file line number Diff line number Diff line change 55
66setup (
77 name = "Levenshtein" ,
8- version = "0.20.6 " ,
8+ version = "0.20.7 " ,
99 url = "https://github.com/maxbachmann/Levenshtein" ,
1010 author = "Max Bachmann" ,
1111 install_requires = ["rapidfuzz >= 2.3.0, < 3.0.0" ],
2929
3030 packages = ["Levenshtein" ],
3131 package_dir = {'' :'src' },
32+ package_data = {
33+ "Levenshtein" : ["*.pyi" , "py.typed" ]
34+ },
3235 python_requires = ">=3.6"
3336)
Original file line number Diff line number Diff line change 1616
1717__author__ : str = "Max Bachmann"
1818__license__ : str = "GPL"
19- __version__ : str = "0.20.6 "
19+ __version__ : str = "0.20.7 "
2020
2121import rapidfuzz .distance .Levenshtein as _Levenshtein
2222import rapidfuzz .distance .Indel as _Indel
You can’t perform that action at this time.
0 commit comments