restrict poetry and tox versions to latest versions

This commit is contained in:
Obeida Shamoun 2023-05-19 16:38:10 +02:00
parent a489fe2c53
commit 0693ce4706
No known key found for this signature in database
GPG Key ID: C393AE9D78004C18
2 changed files with 101 additions and 207 deletions

297
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -40,9 +40,9 @@ poetry = ["poetry", "cleo"]
[tool.poetry.dependencies]
python = "^3.7"
cleo = {version = ">=1.0,<3.0", optional = true}
poetry = {version = ">=1.2.0,<1.5.0", optional = true}
poetry = {version = "^1.5.0", optional = true}
poetry-core = "^1.1.0"
tox = "^3.8.0"
tox = "^4"
[tool.poetry.group.dev.dependencies]
bandit = "^1.6.2"
@ -60,13 +60,8 @@ pytest-cov = "^2.10.1"
reorder-python-imports = "^2.3.5"
safety = "^2.2.0"
toml = "^0.10.1"
tox = "^3.20.0"
tox = "^4"
types-toml = "^0.10.1"
# This is a workaround for this issue with the Poetry export
# plugin which was blocking the 'security' CI check:
#
# https://github.com/python-poetry/poetry-plugin-export/issues/176
virtualenv = ">=20.15,<20.16"
[build-system]
requires = ["poetry-core>=1.1.0"]