File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed
Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 11## Changelog
22
3+ ### [ 1.1.1] - 2022-07-09
4+ #### Fixed
5+ - fix missing type stubs
6+
37### [ 1.1.0] - 2022-07-04
48#### Changed
59- change src layout to make package import from root directory possible
Original file line number Diff line number Diff line change @@ -4,11 +4,10 @@ include CMakeLists.txt
44include README.md
55include LICENSE
66include pyproject.toml
7- include src/jarowinkler/*.pyi
87include src/jarowinkler/py.typed
98
109recursive-include src/jarowinkler CMakeLists.txt
11- recursive-include src/jarowinkler *.hpp *.pyx *.pxd *.cxx
10+ recursive-include src/jarowinkler *.hpp *.pyx *.pxd *.cxx *.pyi
1211recursive-include tests *
1312
1413include extern/jarowinkler-cpp/LICENSE
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ def show_message(*lines):
1111
1212setup_args = {
1313 "name" : "jarowinkler" ,
14- "version" : "1.1.0 " ,
14+ "version" : "1.1.1 " ,
1515 "url" : "https://github.com/maxbachmann/JaroWinkler" ,
1616 "author" : "Max Bachmann" ,
1717 "author_email" : "pypi@maxbachmann.de" ,
@@ -31,11 +31,8 @@ def show_message(*lines):
3131 ],
3232
3333 "packages" : ["jarowinkler" ],
34- "package_dir" : {'jarowinkler' : 'src/jarowinkler' },
35- "package_data" : {"src/jarowinkler" : [
36- "*.pyi" ,
37- "py.typed"
38- ]},
34+ "package_dir" : {'' : 'src' },
35+ "package_data" : {"jarowinkler" : ["*.pyi" , "py.typed" ]},
3936 "python_requires" : ">=3.6"
4037}
4138
Original file line number Diff line number Diff line change 11__author__ : str = "Max Bachmann"
22__license__ : str = "MIT"
3- __version__ : str = "1.1.0 "
3+ __version__ : str = "1.1.1 "
44
55def _fallback_import (module : str , name : str ):
66 import importlib
You can’t perform that action at this time.
0 commit comments