We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1fa23 commit a42a1abCopy full SHA for a42a1ab
.github/workflows/pythonbuild.yml
@@ -92,7 +92,7 @@ jobs:
92
build_wheels_macos:
93
name: Build wheel on macos-latest/${{matrix.arch}}/${{matrix.python_tag}}
94
needs: [build_sdist]
95
- runs-on: macos-latest
+ runs-on: ${{ matrix.os }}
96
strategy:
97
fail-fast: false
98
matrix:
HISTORY.md
@@ -1,5 +1,9 @@
1
## Changelog
2
3
+### v0.26.1
4
+#### Changed
5
+- add missing mac os wheels
6
+
7
### v0.26.0
8
#### Changed
9
- add support for Python 3.13
src/Levenshtein/__init__.py
@@ -18,7 +18,7 @@
18
19
__author__: str = "Max Bachmann"
20
__license__: str = "GPL"
21
-__version__: str = "0.26.0"
+__version__: str = "0.26.1"
22
23
import rapidfuzz.distance.Hamming as _Hamming
24
import rapidfuzz.distance.Indel as _Indel
0 commit comments