From e799f32d7160cd0943b72e648cc82eeb85ed3de8 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 31 Oct 2022 09:52:32 +0100 Subject: [PATCH] set black to format to py38 to support Debian/bullseye package Debian/bullseye (stable) includes black v20.8b1, which does not yet know about the py39 target-version. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 558596e9..9e7fc078 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] skip-string-normalization = true -target-version = ["py39"] +target-version = ["py38"] [tool.mypy]