diff --git a/.github/workflows/pythonbuild.yml b/.github/workflows/pythonbuild.yml index e426c1a..81ae737 100644 --- a/.github/workflows/pythonbuild.yml +++ b/.github/workflows/pythonbuild.yml @@ -92,7 +92,7 @@ jobs: build_wheels_macos: name: Build wheel on macos-latest/${{matrix.arch}}/${{matrix.python_tag}} needs: [build_sdist] - runs-on: macos-latest + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: diff --git a/HISTORY.md b/HISTORY.md index a5e2668..5e9e801 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ ## Changelog +### v0.26.1 +#### Changed +- add missing mac os wheels + ### v0.26.0 #### Changed - add support for Python 3.13 diff --git a/src/Levenshtein/__init__.py b/src/Levenshtein/__init__.py index e842d90..80ba944 100644 --- a/src/Levenshtein/__init__.py +++ b/src/Levenshtein/__init__.py @@ -18,7 +18,7 @@ __author__: str = "Max Bachmann" __license__: str = "GPL" -__version__: str = "0.26.0" +__version__: str = "0.26.1" import rapidfuzz.distance.Hamming as _Hamming import rapidfuzz.distance.Indel as _Indel