From 8b5a1caf61cbf29fa4d5c0f39a003292ea6a95b6 Mon Sep 17 00:00:00 2001 From: Philip May Date: Wed, 2 Feb 2022 21:14:20 +0100 Subject: [PATCH] change black target-version to py33 Signed-off-by: Philip May --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 08922c62..5dcd9d81 100644 --- a/noxfile.py +++ b/noxfile.py @@ -59,7 +59,7 @@ def lint(session): session.install("flake8", "black", "mypy", "isort", "types-requests") session.run("isort", "--check", "--profile=black", *SOURCE_FILES) - session.run("black", "--target-version=py27", "--check", *SOURCE_FILES) + session.run("black", "--target-version=py33", "--check", *SOURCE_FILES) session.run("flake8", *SOURCE_FILES) session.run("python", "utils/license-headers.py", "check", *SOURCE_FILES)