Compare commits

...

3 Commits

Author SHA1 Message Date
Max Bachmann 3d1ccd389f
use newer scikit-build 2022-11-05 23:16:18 +01:00
Max Bachmann 4fbf41d5b0
release 2.13.2 2022-11-05 23:15:44 +01:00
Max Bachmann 6d704f6791 retrieve docs version from package 2022-11-05 20:19:57 +01:00
6 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,6 @@
## Changelog ## Changelog
### [2.13.2] - 2022-11- ### [2.13.2] - 2022-11-05
#### Fixed #### Fixed
- fix incorrect results in `Hamming.normalized_similarity` - fix incorrect results in `Hamming.normalized_similarity`
- fix incorrect score_cutoff handling in pure python implementation of - fix incorrect score_cutoff handling in pure python implementation of

View File

@ -17,12 +17,14 @@
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
import rapidfuzz
project = "RapidFuzz" project = "RapidFuzz"
copyright = "2021, Max Bachmann" copyright = "2021, Max Bachmann"
author = "Max Bachmann" author = "Max Bachmann"
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = "2.13.1" release = rapidfuzz.__version__
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View File

@ -1,7 +1,7 @@
[build-system] [build-system]
requires = [ requires = [
"setuptools>=42", "setuptools>=42",
"scikit-build~=0.16.1", "scikit-build~=0.16.2",
"Cython==3.0.0a11" "Cython==3.0.0a11"
] ]
build-backend = "backend" build-backend = "backend"

View File

@ -13,7 +13,7 @@ with open("README.md", encoding="utf8") as f:
setup_args = { setup_args = {
"name": "rapidfuzz", "name": "rapidfuzz",
"version": "2.13.1", "version": "2.13.2",
"extras_require": {"full": ["numpy"]}, "extras_require": {"full": ["numpy"]},
"url": "https://github.com/maxbachmann/RapidFuzz", "url": "https://github.com/maxbachmann/RapidFuzz",
"author": "Max Bachmann", "author": "Max Bachmann",

View File

@ -3,7 +3,7 @@ rapid string matching library
""" """
__author__: str = "Max Bachmann" __author__: str = "Max Bachmann"
__license__: str = "MIT" __license__: str = "MIT"
__version__: str = "2.13.1" __version__: str = "2.13.2"
from rapidfuzz import distance, fuzz, process, string_metric, utils from rapidfuzz import distance, fuzz, process, string_metric, utils

View File

@ -6,9 +6,9 @@ index 77671b1..7692f90 100644
[build-system] [build-system]
requires = [ requires = [
"setuptools>=42", "setuptools>=42",
- "scikit-build~=0.16.1", - "scikit-build~=0.16.2",
- "Cython==3.0.0a11" - "Cython==3.0.0a11"
+ "scikit-build~=0.16.1" + "scikit-build~=0.16.2"
] ]
build-backend = "backend" build-backend = "backend"
backend-path = ["_custom_build"] backend-path = ["_custom_build"]