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:
Jose M Leon 2025-01-21 11:46:15 -05:00 committed by GitHub
parent 1029be7df9
commit e886d98c0e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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]