From 762b65a0603a02de534a30ca1e5643e2ef2c5d11 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Thu, 2 Oct 2025 19:25:38 +0200 Subject: [PATCH] Tools: Update clang version used in format script --- tools/utils_maintenance/clang_format_paths.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/utils_maintenance/clang_format_paths.py b/tools/utils_maintenance/clang_format_paths.py index 9b9d0b04e68..0c6119b4bd2 100755 --- a/tools/utils_maintenance/clang_format_paths.py +++ b/tools/utils_maintenance/clang_format_paths.py @@ -25,8 +25,8 @@ from collections.abc import ( Sequence, ) -VERSION_MIN = (17, 0, 6) -VERSION_MAX_RECOMMENDED = (17, 0, 6) +VERSION_MIN = (20, 1, 8) +VERSION_MAX_RECOMMENDED = (20, 1, 8) CLANG_FORMAT_CMD = "clang-format" BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))