release v2.0.7
This commit is contained in:
parent
2300763331
commit
87234fc798
|
@ -1,5 +1,9 @@
|
|||
## Changelog
|
||||
|
||||
### [2.0.7] - 2022-03-13
|
||||
#### Fixed
|
||||
- Do not include installations of jaro_winkler and taskflow in wheels
|
||||
|
||||
### [2.0.6] - 2022-03-06
|
||||
#### Fixed
|
||||
- fix incorrect population of sys.modules which lead to submodules overshadowing
|
||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
|
|||
author = 'Max Bachmann'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '2.0.6'
|
||||
release = '2.0.7'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -3,7 +3,7 @@ rapid string matching library
|
|||
"""
|
||||
__author__ = "Max Bachmann"
|
||||
__license__ = "MIT"
|
||||
__version__ = "2.0.6"
|
||||
__version__ = "2.0.7"
|
||||
|
||||
from rapidfuzz import (
|
||||
process,
|
||||
|
|
4
setup.py
4
setup.py
|
@ -6,8 +6,8 @@ with open('README.md', 'rt', encoding="utf8") as f:
|
|||
|
||||
setup(
|
||||
name="rapidfuzz",
|
||||
version="2.0.6",
|
||||
install_requires=["jarowinkler >= 1.0.1, < 1.1.0"],
|
||||
version="2.0.7",
|
||||
install_requires=["jarowinkler >= 1.0.2, < 1.1.0"],
|
||||
extras_require={'full': ['numpy']},
|
||||
url="https://github.com/maxbachmann/RapidFuzz",
|
||||
author="Max Bachmann",
|
||||
|
|
Loading…
Reference in New Issue