Skip to content

Commit

Permalink
remove levenshtein dependency
Browse files Browse the repository at this point in the history
I don't think it is necessary to have the levenshtein dependency for fast fuzzy search
  • Loading branch information
miquelduranfrigola committed Dec 19, 2023
1 parent 2fee581 commit 0416291
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,14 @@ pytest = {version = "^7.4.0", optional = true}
fuzzywuzzy = {version = "^0.18.0", optional = true}
sphinx = {version = ">=5.3.0", optional = true} # For compatibility with python 3.7.x
jinja2 = {version = "^3.1.2", optional = true}
levenshtein = {version = ">=0.21.1,<0.24.0", optional = true} # For faster fuzzy search
boto3 = "^1.28.40"


[tool.poetry.extras]
# Instead of using poetry dependency groups, we use extras to make it pip installable
lake = ["isaura"]
docs = ["sphinx", "jinja2"]
test = ["pytest", "fuzzywuzzy", "levenshtein"]
test = ["pytest", "fuzzywuzzy"]
#all = [lake, docs, test]

[tool.poetry.scripts]
Expand Down

0 comments on commit 0416291

Please sign in to comment.