Compare commits
3 Commits
4c81bed326
...
3d1ccd389f
Author | SHA1 | Date |
---|---|---|
Max Bachmann | 3d1ccd389f | |
Max Bachmann | 4fbf41d5b0 | |
Max Bachmann | 6d704f6791 |
|
@ -1,6 +1,6 @@
|
|||
## Changelog
|
||||
|
||||
### [2.13.2] - 2022-11-
|
||||
### [2.13.2] - 2022-11-05
|
||||
#### Fixed
|
||||
- fix incorrect results in `Hamming.normalized_similarity`
|
||||
- fix incorrect score_cutoff handling in pure python implementation of
|
||||
|
|
|
@ -17,12 +17,14 @@
|
|||
|
||||
# -- Project information -----------------------------------------------------
|
||||
|
||||
import rapidfuzz
|
||||
|
||||
project = "RapidFuzz"
|
||||
copyright = "2021, Max Bachmann"
|
||||
author = "Max Bachmann"
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = "2.13.1"
|
||||
release = rapidfuzz.__version__
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
"scikit-build~=0.16.1",
|
||||
"scikit-build~=0.16.2",
|
||||
"Cython==3.0.0a11"
|
||||
]
|
||||
build-backend = "backend"
|
||||
|
|
2
setup.py
2
setup.py
|
@ -13,7 +13,7 @@ with open("README.md", encoding="utf8") as f:
|
|||
|
||||
setup_args = {
|
||||
"name": "rapidfuzz",
|
||||
"version": "2.13.1",
|
||||
"version": "2.13.2",
|
||||
"extras_require": {"full": ["numpy"]},
|
||||
"url": "https://github.com/maxbachmann/RapidFuzz",
|
||||
"author": "Max Bachmann",
|
||||
|
|
|
@ -3,7 +3,7 @@ rapid string matching library
|
|||
"""
|
||||
__author__: str = "Max Bachmann"
|
||||
__license__: str = "MIT"
|
||||
__version__: str = "2.13.1"
|
||||
__version__: str = "2.13.2"
|
||||
|
||||
from rapidfuzz import distance, fuzz, process, string_metric, utils
|
||||
|
||||
|
|
|
@ -6,9 +6,9 @@ index 77671b1..7692f90 100644
|
|||
[build-system]
|
||||
requires = [
|
||||
"setuptools>=42",
|
||||
- "scikit-build~=0.16.1",
|
||||
- "scikit-build~=0.16.2",
|
||||
- "Cython==3.0.0a11"
|
||||
+ "scikit-build~=0.16.1"
|
||||
+ "scikit-build~=0.16.2"
|
||||
]
|
||||
build-backend = "backend"
|
||||
backend-path = ["_custom_build"]
|
||||
|
|
Loading…
Reference in New Issue