release v2.0.7

This commit is contained in:
Max Bachmann 2022-03-13 15:17:59 +01:00
parent 2300763331
commit 87234fc798
4 changed files with 8 additions and 4 deletions

View File

@ -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

View File

@ -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 ---------------------------------------------------

View File

@ -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,

View File

@ -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",