From d2caa92bd0cb62408ecbd7019224d89e59f688e5 Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Mon, 29 Jul 2024 10:57:32 +0200 Subject: [PATCH] upgrade scikit-build --- CHANGELOG.rst | 3 ++- pyproject.toml | 2 +- setup.py | 2 +- src/rapidfuzz/__init__.py | 2 +- tools/sdist.patch | 4 ++-- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cdcbdf76..ad80840d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ^^^^^^^^^^^^^^^^^^^^ diff --git a/pyproject.toml b/pyproject.toml index 5be93c37..b500b9eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index d904bbe8..7d7a830a 100644 --- a/setup.py +++ b/setup.py @@ -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", diff --git a/src/rapidfuzz/__init__.py b/src/rapidfuzz/__init__.py index 88ceb36e..39f11c69 100644 --- a/src/rapidfuzz/__init__.py +++ b/src/rapidfuzz/__init__.py @@ -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 diff --git a/tools/sdist.patch b/tools/sdist.patch index be33d43a..95216bb5 100644 --- a/tools/sdist.patch +++ b/tools/sdist.patch @@ -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"]