From d1d704f1716a91ad1a728d4f8972cc5611a044b7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Mon, 28 Mar 2022 23:01:33 +0000 Subject: [PATCH] chore(python): use black==22.3.0 --- synthtool/gcp/templates/python_library/noxfile.py.j2 | 2 +- synthtool/gcp/templates/python_samples/noxfile.py.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/synthtool/gcp/templates/python_library/noxfile.py.j2 b/synthtool/gcp/templates/python_library/noxfile.py.j2 index 3ecf634a1..2e5f31513 100644 --- a/synthtool/gcp/templates/python_library/noxfile.py.j2 +++ b/synthtool/gcp/templates/python_library/noxfile.py.j2 @@ -24,7 +24,7 @@ import shutil import nox -BLACK_VERSION = "black==19.10b0" +BLACK_VERSION = "black==22.3.0" BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"] DEFAULT_PYTHON_VERSION="{{ default_python_version }}" diff --git a/synthtool/gcp/templates/python_samples/noxfile.py.j2 b/synthtool/gcp/templates/python_samples/noxfile.py.j2 index 4c808af73..949e0fde9 100644 --- a/synthtool/gcp/templates/python_samples/noxfile.py.j2 +++ b/synthtool/gcp/templates/python_samples/noxfile.py.j2 @@ -29,7 +29,7 @@ import nox # WARNING - WARNING - WARNING - WARNING - WARNING # WARNING - WARNING - WARNING - WARNING - WARNING -BLACK_VERSION = "black==19.10b0" +BLACK_VERSION = "black==22.3.0" # Copy `noxfile_config.py` to your directory and modify it instead.