From d89deae29cf494e187a6f9760ed7176152b77b82 Mon Sep 17 00:00:00 2001 From: Illia Silin <98187287+illsilin@users.noreply.github.com> Date: Wed, 1 May 2024 15:34:56 -0700 Subject: [PATCH] Downgrade minimum required python version to 3.6 (#1274) [ROCm/composable_kernel commit: 7797f7c7a101bc2d50e815ce39c4f75046843131] --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a3a9801cc6..e3113a31dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,7 +26,7 @@ set(version 1.1.0) project(composable_kernel VERSION ${version} LANGUAGES CXX) include(CTest) -find_package(Python3 3.8 COMPONENTS Interpreter REQUIRED) +find_package(Python3 3.6 COMPONENTS Interpreter REQUIRED) list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")