From 4f8eb9225e11aef2c8111628423bc0a847caf224 Mon Sep 17 00:00:00 2001 From: Tal Ben-Nun Date: Fri, 15 Nov 2024 23:30:07 -0800 Subject: [PATCH] Match CMake version requirements --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c228ae4558..9c9bc020bb 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ output = subprocess.check_output([cmake_path, '--version']).decode('utf-8') cmake_version = tuple(int(t) for t in output.splitlines()[0].split(' ')[-1].split('.')) # If version meets minimum requirements, CMake is not necessary - if cmake_version >= (3, 15): + if cmake_version >= (3, 17): cmake_requires = [] except (subprocess.CalledProcessError, OSError, IndexError, ValueError): # Any failure in getting the CMake version counts as "not found"