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
This commit is contained in:
parent
1029be7df9
commit
e886d98c0e
|
|
@ -33,7 +33,7 @@ dependencies = [
|
||||||
"rich>=13.0.0",
|
"rich>=13.0.0",
|
||||||
"GitPython>=3.1",
|
"GitPython>=3.1",
|
||||||
"fuzzywuzzy==0.18.0",
|
"fuzzywuzzy==0.18.0",
|
||||||
"python-Levenshtein==0.23.0",
|
"rapidfuzz>=3.11.0",
|
||||||
"pathspec>=0.11.0",
|
"pathspec>=0.11.0",
|
||||||
"aider-chat>=0.72.1",
|
"aider-chat>=0.72.1",
|
||||||
"tavily-python>=0.5.0",
|
"tavily-python>=0.5.0",
|
||||||
|
|
@ -44,6 +44,7 @@ dependencies = [
|
||||||
dev = [
|
dev = [
|
||||||
"pytest-timeout>=2.2.0",
|
"pytest-timeout>=2.2.0",
|
||||||
"pytest>=7.0.0",
|
"pytest>=7.0.0",
|
||||||
|
"pytest-cov>=6.0.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue