Skip to content

Commit d2caa92

Browse files
authored
upgrade scikit-build
1 parent 685252d commit d2caa92

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Changelog
22
---------
33

4-
[3.9.5] -
4+
[3.9.5] - 2024-07-29
55
^^^^^^^^^^^^^^^^^^^^
66
Fixed
77
~~~~~
88
* include simd binaries in pyinstaller builds
9+
* fix builds with setuptools 72 by upgrading `scikit-build`
910

1011
[3.9.4] - 2024-07-02
1112
^^^^^^^^^^^^^^^^^^^^

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"setuptools>=42",
4-
"scikit-build~=0.17.0",
4+
"scikit-build~=0.18.0",
55
"Cython >=3.0.10, <3.1.0"
66
]
77
build-backend = "backend"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def show_message(*lines):
1515

1616
setup_args = {
1717
"name": "rapidfuzz",
18-
"version": "3.9.4",
18+
"version": "3.9.5",
1919
"extras_require": {"full": ["numpy"]},
2020
"url": "https://github.com/rapidfuzz/RapidFuzz",
2121
"author": "Max Bachmann",

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__author__: str = "Max Bachmann"
88
__license__: str = "MIT"
9-
__version__: str = "3.9.4"
9+
__version__: str = "3.9.5"
1010

1111
from rapidfuzz import distance, fuzz, process, utils
1212

tools/sdist.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ index 77671b1..7692f90 100644
66
[build-system]
77
requires = [
88
"setuptools>=42",
9-
- "scikit-build~=0.17.0",
9+
- "scikit-build~=0.18.0",
1010
- "Cython >=3.0.10, <3.1.0"
11-
+ "scikit-build~=0.17.0"
11+
+ "scikit-build~=0.18.0"
1212
]
1313
build-backend = "backend"
1414
backend-path = ["_custom_build"]

0 commit comments

Comments
 (0)