Bump editdistance to 0.8.* (#11795)

This commit is contained in:
Avasam
2024-04-20 08:28:39 -04:00
committed by GitHub
parent 57f3dcac8d
commit ffdef2f2ea
2 changed files with 3 additions and 1 deletions

View File

@@ -1,2 +1,2 @@
version = "0.6.*"
version = "0.8.*"
upstream_repository = "https://github.com/roy-ht/editdistance"

View File

@@ -2,3 +2,5 @@ from collections.abc import Hashable, Iterable
def eval(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...
def distance(a: Iterable[Hashable], b: Iterable[Hashable]) -> int: ...
def eval_criterion(a: Iterable[Hashable], b: Iterable[Hashable], thr: int) -> bool: ...
def distance_le_than(a: Iterable[Hashable], b: Iterable[Hashable], thr: int) -> bool: ...