From 0da2ebf6446356af6fa0476007743ec360f80aee Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Wed, 3 Jan 2024 13:29:40 -0700 Subject: [PATCH] make: fix clang-format detection we're on 17.0.6, not 17.0.0 which resulted in a warning message being emitted. --- 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 14beb5fdd12..ade503c637e 100755 --- a/tools/utils_maintenance/clang_format_paths.py +++ b/tools/utils_maintenance/clang_format_paths.py @@ -25,8 +25,8 @@ from typing import ( Tuple, ) -VERSION_MIN = (17, 0, 0) -VERSION_MAX_RECOMMENDED = (17, 0, 0) +VERSION_MIN = (17, 0, 6) +VERSION_MAX_RECOMMENDED = (17, 0, 6) CLANG_FORMAT_CMD = "clang-format" BASE_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", ".."))