From e886d98c0e7a6fdcba1252a400f6633983136baa Mon Sep 17 00:00:00 2001 From: Jose M Leon Date: Tue, 21 Jan 2025 11:46:15 -0500 Subject: [PATCH] FIX Issue 42: Error with Levenshtein (#44) * FIX install error from Levenshtein by removing that dep in favor of python native * FIX error during git push * fixes * wip * wip --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 63ba73d..87aec73 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "rich>=13.0.0", "GitPython>=3.1", "fuzzywuzzy==0.18.0", - "python-Levenshtein==0.23.0", + "rapidfuzz>=3.11.0", "pathspec>=0.11.0", "aider-chat>=0.72.1", "tavily-python>=0.5.0", @@ -44,6 +44,7 @@ dependencies = [ dev = [ "pytest-timeout>=2.2.0", "pytest>=7.0.0", + "pytest-cov>=6.0.0", ] [project.scripts]