From 2d71858380d345d6b8be138e7ea4db973bcd0331 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 24 Mar 2022 18:42:18 -0700 Subject: [PATCH] black: Bump target-version to py37. This lets Black support a Python 3.7 async comprehension syntax, but has no effect on our current code. Signed-off-by: Anders Kaseorg --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e5f07967b8..24335b1d64 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.black] line-length = 100 -target-version = ["py36"] +target-version = ["py37"] [tool.isort] src_paths = [".", "tools", "tools/setup/emoji"]