From 531136183bd2c5a734452893a8f6f4b448cd3f82 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 30 May 2023 10:09:32 +0300 Subject: [PATCH] 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+. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a1d0694..292c4df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"]