editdistance
editdistance copied to clipboard
Fast implementation of the edit distance(Levenshtein distance)
`editdistance==0.6.1` fails to build on Python 3.11: ``` Command ['/Users/narolski/Library/Caches/pypoetry/virtualenvs/documentknowledge-DIbTc0Ty-py3.11/bin/python', '-m', 'pip', 'install', '--use-pep517', '--disable-pip-version-check', '--prefix', '/Users/narolski/Library/Caches/pypoetry/virtualenvs/documentknowledge-DIbTc0Ty-py3.11', '--no-deps', '/Users/narolski/Library/Caches/pypoetry/artifacts/28/98/f6/7ed6f4eb639b58674ef44f7011c4dd5b5323046689653ef73f70250466/editdistance-0.6.1.tar.gz'] errored with the following return code 1, and output: Processing /Users/narolski/Library/Caches/pypoetry/artifacts/28/98/f6/7ed6f4eb639b58674ef44f7011c4dd5b5323046689653ef73f70250466/editdistance-0.6.1.tar.gz...
Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 1 to 2. Release notes Sourced from docker/setup-qemu-action's releases. v2.0.0 Node 16 as default runtime by @crazy-max (#48) This requires a minimum Actions Runner version of v2.285.0,...
Bumps [joerick/cibuildwheel](https://github.com/joerick/cibuildwheel) from 1.9.0 to 2.11.2. Release notes Sourced from joerick/cibuildwheel's releases. v2.11.2 🛠 Updates CPython 3.11 to 3.11.0 - final release (#1327) 🛠 Simplify the default macOS repair command...
The following test fails because all of the `Bug` objects are incorrectly treated as equal: ```python #! /usr/bin/env python3 import editdistance class Bug(str): def __hash__(self): return 0 if __name__ ==...
When I try to build from source, errors occured: ``` editdistance/_editdistance.cpp(118): error C2059: 语法错误:“if” editdistance/_editdistance.cpp(119): error C2059: 语法错误:“else” editdistance/_editdistance.cpp(120): error C2059: 语法错误:“else” editdistance/_editdistance.cpp(121): error C2059: 语法错误:“else” editdistance/_editdistance.cpp(122): error C2059: 语法错误:“else”...
wanted to get talknet working but this seems to be a dependency :( I am using Japanese locale. It shows a bunch of syntax errors in _editdistance.cpp: ``` PS C:\Windows\system32>...
While calculating edit distance of two strings, could you possibly extend the library to keep track of the insertions, deletions, and replacements required to turn one string into another? Eg....
Hi all, I am trying to `pip install editdistance` and I have an error when building it, the command prompt returns : ``` C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.29.30037\include\cstdlib(12): fatal error...
Hi guys, I am currently working on a project using Python v3.8.2. We are also trying to leverage on editdistance for one of our features, but can't seemed to install...
Hey, I ran a quick benchmark of my own on, using: - macOS 10.14.5 (Mojave) - Python 3.7.3 - `python-Levenshtein 0.12.0` (pypi) - `editdistance 0.5.3` (pypi) In my tests **`python-Levenshtein`...