From b80f927f709a2f43a93f6aa916ebf14793c24162 Mon Sep 17 00:00:00 2001 From: Evgeny Mankov Date: Sun, 28 Jan 2024 21:35:25 +0000 Subject: [PATCH] [HIPIFY][cmake][tests][fix] Enable Python 3.12.x support in cmake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c1ecdb9b..5859507a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -233,7 +233,7 @@ if(HIPIFY_CLANG_TESTS OR HIPIFY_CLANG_TESTS_ONLY) if(${CMAKE_VERSION} VERSION_LESS "3.27.0") find_package(PythonInterp 2.7 REQUIRED) else() - find_package(Python 2.7...3.12 REQUIRED) + find_package(Python 2.7...3.13 REQUIRED) endif() function (require_program PROGRAM_NAME)