From 3fc92fde6f8f419b33b984363a467f903e3e7b4b Mon Sep 17 00:00:00 2001 From: Paulo Jarbas Date: Wed, 25 Jan 2023 09:29:17 -0300 Subject: [PATCH] change syntax of the tool.poetry.dependencies change syntax of the tool.poetry.dependencies to allow uptade the librarires to the new versions of python like 3.10 --- pyproject.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index dbe0535..8423f43 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]