Update dev environment to use Python-3.10 for all dependencies

This commit is contained in:
Ethan Paul 2023-03-02 16:19:11 -05:00
parent a98dd16358
commit 29243223fe
Signed by: enpaul
GPG Key ID: DAF443CA3A2FA6FA
2 changed files with 2145 additions and 1538 deletions

3646
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -42,24 +42,25 @@ python = "^3.6.1"
ansible-core = {version = "^2.11.5", optional = true}
[tool.poetry.dev-dependencies]
bandit = "^1.6.2"
black = { version = "^21.9b0", allow-prereleases = true, python = "^3.7" }
blacken-docs = "^1.8.0"
ipython = { version = "^7.18.1", python = "^3.7" }
mypy = "^0.800"
pre-commit = "^2.7.1"
pre-commit-hooks = "^3.3.0"
pylint = "^2.4.4"
pytest = "^6.0.2"
pytest-cov = "^2.10.1"
reorder-python-imports = "^2.3.5"
safety = "^1.9.0"
toml = "^0.10.1"
tox = "^3.20.0"
tox-poetry-installer = { version = "^0.8.1", extras = ["poetry"] }
types-toml = "^0.10.4"
mdformat = "^0.6.4"
mdformat-gfm = "^0.2"
bandit = {version = "^1.6.2", python = "^3.10"}
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"}
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"}
mdformat = {version = "^0.6.4", python = "^3.10"}
mdformat-gfm = {version = "^0.2", python = "^3.10"}
[build-system]
requires = ["poetry-core>=1.0.0"]