From 29076e17847b476102161812f7ef040ff71f439c Mon Sep 17 00:00:00 2001 From: David Zaslavsky Date: Fri, 27 Jun 2025 23:28:20 -0700 Subject: [PATCH] Update black target version to Python 3.7 Since the minimum required version of Python in the project's dependencies has been updated to 3.7, it makes sense to bump the black target version to match. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6c4b23b..35f68f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,5 +6,5 @@ build-backend = "setuptools.build_meta" write_to = "pytest_localserver/_version.py" [tool.black] -target-version = ['py36'] +target-version = ['py37'] line-length = 120