make: fix clang-format detection

we're on 17.0.6, not 17.0.0 which resulted in a warning message
being emitted.
This commit is contained in:
Ray Molenkamp
2024-01-03 13:29:40 -07:00
parent a1bcba0598
commit 0da2ebf644

View File

@@ -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__), "..", ".."))