Skip to content

Commit

Permalink
Merge pull request #134 from PJarbas/patch-1
Browse files Browse the repository at this point in the history
change syntax of the tool.poetry.dependencies
  • Loading branch information
thalesbertaglia authored Jan 26, 2023
2 parents 9c72b0f + 3fc92fd commit 3ef7bff
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.6"
editdistance = "0.6.0"
numpy = "^1.19.5"
gensim = "4.1.2"
tabulate = "0.8.9"
emoji = "1.6.3"
python = ">=3.6"
editdistance = ">=0.6.0"
numpy = ">=1.19.5"
gensim = ">=4.1.2"
tabulate = ">=0.8.9"
emoji = ">=1.6.3"

[tool.poetry.dev-dependencies]
coveralls = "^3.3.1"
pytest-cov = "^3.0.0"
coveralls = ">=3.3.1"
pytest-cov = ">=3.0.0"

[build-system]
requires = ["poetry>=0.12"]
Expand Down

0 comments on commit 3ef7bff

Please sign in to comment.