From 23b8ecddea3dc057b5700b3f157076388ce617e5 Mon Sep 17 00:00:00 2001 From: "Christopher J. Markiewicz" Date: Thu, 4 Nov 2021 11:58:03 -0400 Subject: [PATCH] MNT: Configure black to avoid excessive rewriting --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 703a451b7a6..bbec3cfd5d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,9 @@ [build-system] # Keep synchronized with the minimum version to install in setup.py requires = ["setuptools >= 38.4.1", "wheel"] + +[tool.black] +line-length = 99 +target-version = ['py37'] +skip-string-normalization = true +extend-exclude = '_version.py|versioneer.py'