Skip to content

Commit

Permalink
change syntax of the tool.poetry.dependencies
Browse files Browse the repository at this point in the history
change syntax of the tool.poetry.dependencies to allow uptade the librarires to the new versions of python like 3.10
  • Loading branch information
PJarbas authored Jan 25, 2023
1 parent 9c72b0f commit 3fc92fd
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 3fc92fd

Please sign in to comment.