Skip to content

Commit

Permalink
Match CMake version requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
tbennun committed Nov 16, 2024
1 parent b5f91e1 commit 4f8eb92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4f8eb92

Please sign in to comment.