Update to use poetry dev groups

This commit is contained in:
2023-03-02 16:59:18 -05:00
parent 29243223fe
commit d11af1658d
3 changed files with 107 additions and 113 deletions

View File

@@ -41,27 +41,35 @@ python = "^3.6.1"
"ruamel.yaml" = "^0.17.16"
ansible-core = {version = "^2.11.5", optional = true}
[tool.poetry.dev-dependencies]
bandit = {version = "^1.6.2", python = "^3.10"}
[tool.poetry.group.dev.dependencies]
black = {version = "^23.1.0", python = "^3.10"}
blacken-docs = {version = "^1.13.0", python = "^3.10"}
ipython = {version = "^8.10.1", python = "^3.10"}
mypy = {version = "^1.0.1", python = "^3.10"}
poetry = {version = "^1.2", python = "^3.10"}
packaging = {version = "^23.0", python = "^3.10"} # Implicit python compat check fails for some reason
pre-commit = {version = "^2.7.1", python = "^3.10"}
pre-commit-hooks = {version = "^3.3.0", python = "^3.10"}
pylint = {version = "^2.4.4", python = "^3.10"}
pytest = {version = "^6.0.2", python = "^3.10"}
pytest-cov = {version = "^2.10.1", python = "^3.10"}
reorder-python-imports = {version = "^2.3.5", python = "^3.10"}
safety = {version = "^2.2.0", python = "^3.10"}
toml = {version = "^0.10.1", python = "^3.10"}
tox = {version = "^3.20.0", python = "^3.10"}
tox-poetry-installer = {version = "^0.10.1", extras = ["poetry"], python = "^3.10"}
types-toml = {version = "^0.10.4", python = "^3.10"}
mypy = {version = "^1.0.1", python = "^3.10"}
mdformat = {version = "^0.6.4", python = "^3.10"}
mdformat-gfm = {version = "^0.2", python = "^3.10"}
[tool.poetry.group.security.dependencies]
bandit = {version = "^1.6.2", python = "^3.10"}
safety = {version = "^2.2.0", python = "^3.10"}
poetry = {version = "^1.2.0", python = "^3.10"}
[tool.poetry.group.test.dependencies]
pytest = {version = "^6.0.2", python = "^3.6"}
pytest-cov = {version = "^2.10.1", python = "^3.6"}
toml = {version = "^0.10.1", python = "^3.6"}
typing-extensions = {version = "^4.5.0", python = ">3.8"}
[tool.poetry.group.ci.dependencies]
tox = {version = "^3.20.0", python = "^3.10"}
tox-poetry-installer = {version = "^0.10.1", extras = ["poetry"], python = "^3.10"}
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"