pyproject.toml: rework isort and black deps

We no longer need to gatekeep these for Python 3.6+, as all my dev
systems are running Python 3.11 and all my production systems are
running Python 3.8+.
This commit is contained in:
Alan Orth 2023-05-30 10:09:32 +03:00
parent 1a3d0350a5
commit 531136183b
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -16,8 +16,8 @@ falcon-swagger-ui = {git = "https://github.com/alanorth/falcon-swagger-ui.git",
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
pytest = "^6.1.1"
black = {version = "^22.1.0", python = ">=3.6.2"}
isort = {version = "^5.9.1", python = ">=3.6.1"}
black = "^22.1.0"
isort = "^5.9.1"
[build-system]
requires = ["poetry>=0.12"]