Add explicit virtualenv dep to work around issue in poetry-export

Poetry-export is used in CI so this bug blocks CI operation without the workaround
suggested in this issue: https://github.com/python-poetry/poetry-plugin-export/issues/176
This commit is contained in:
2023-03-01 16:39:05 -05:00
parent bd102605b6
commit 4f69c8b3b2
2 changed files with 284 additions and 239 deletions

View File

@@ -62,6 +62,11 @@ safety = "^1.9.0"
toml = "^0.10.1"
tox = "^3.20.0"
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"]