Skip to content

Commit

Permalink
upgrade scikit-build
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Jul 29, 2024
1 parent 685252d commit d2caa92
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Changelog
---------

[3.9.5] -
[3.9.5] - 2024-07-29
^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~
* include simd binaries in pyinstaller builds
* fix builds with setuptools 72 by upgrading `scikit-build`

[3.9.4] - 2024-07-02
^^^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"setuptools>=42",
"scikit-build~=0.17.0",
"scikit-build~=0.18.0",
"Cython >=3.0.10, <3.1.0"
]
build-backend = "backend"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def show_message(*lines):

setup_args = {
"name": "rapidfuzz",
"version": "3.9.4",
"version": "3.9.5",
"extras_require": {"full": ["numpy"]},
"url": "https://github.com/rapidfuzz/RapidFuzz",
"author": "Max Bachmann",
Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__author__: str = "Max Bachmann"
__license__: str = "MIT"
__version__: str = "3.9.4"
__version__: str = "3.9.5"

from rapidfuzz import distance, fuzz, process, utils

Expand Down
4 changes: 2 additions & 2 deletions tools/sdist.patch
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ index 77671b1..7692f90 100644
[build-system]
requires = [
"setuptools>=42",
- "scikit-build~=0.17.0",
- "scikit-build~=0.18.0",
- "Cython >=3.0.10, <3.1.0"
+ "scikit-build~=0.17.0"
+ "scikit-build~=0.18.0"
]
build-backend = "backend"
backend-path = ["_custom_build"]

0 comments on commit d2caa92

Please sign in to comment.