Skip to content

Commit 6b79831

Browse files
authored
install type hints
1 parent d78528d commit 6b79831

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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`

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = '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

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
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"],
@@ -29,5 +29,8 @@
2929

3030
packages=["Levenshtein"],
3131
package_dir={'':'src'},
32+
package_data={
33+
"Levenshtein": ["*.pyi", "py.typed"]
34+
},
3235
python_requires=">=3.6"
3336
)

src/Levenshtein/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
__author__: str = "Max Bachmann"
1818
__license__: str = "GPL"
19-
__version__: str = "0.20.6"
19+
__version__: str = "0.20.7"
2020

2121
import rapidfuzz.distance.Levenshtein as _Levenshtein
2222
import rapidfuzz.distance.Indel as _Indel

0 commit comments

Comments
 (0)