Skip to content

Commit 3531807

Browse files
authored
tag release
1 parent 0ac06fb commit 3531807

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

HISTORY.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Changelog
22

3+
### v0.27.1
4+
#### Changed
5+
- fix build with ``scikit-build-core`` ``v0.11``
6+
37
### v0.27.0
48
#### Fixed
59
- avoid instantiation of basic_string for unsupported types

src/Levenshtein/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
__author__: str = "Max Bachmann"
2020
__license__: str = "GPL"
21-
__version__: str = "0.27.0"
21+
__version__: str = "0.27.1"
2222

2323
import rapidfuzz.distance.Hamming as _Hamming
2424
import rapidfuzz.distance.Indel as _Indel

tools/sdist.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ index 0a8c033..cf967b9 100644
55
@@ -1,7 +1,6 @@
66
[build-system]
77
requires = [
8-
- "scikit-build-core>=0.10.7",
8+
- "scikit-build-core>=0.11",
99
- "Cython>=3.0.11,<3.1.0"
10-
+ "scikit-build-core>=0.10.7"
10+
+ "scikit-build-core>=0.11"
1111
]
1212
build-backend = "scikit_build_core.build"
1313

0 commit comments

Comments
 (0)