From e33d90b36109f67915a80c532ebbb978b72c7bd2 Mon Sep 17 00:00:00 2001 From: Vijay Thakkar Date: Wed, 8 Apr 2020 10:54:36 -0700 Subject: [PATCH] update tools/library/CMakeLists to require python 3.6 according to #70 (#82) #70 only updates the documentation. This commit reflects this bump in python version to the CMake configuration as well. --- tools/library/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/library/CMakeLists.txt b/tools/library/CMakeLists.txt index d5e5bd47..8c8c5c47 100644 --- a/tools/library/CMakeLists.txt +++ b/tools/library/CMakeLists.txt @@ -22,7 +22,7 @@ include(GNUInstallDirs) -find_package(Python3 3.5 COMPONENTS Interpreter REQUIRED) +find_package(Python3 3.6 COMPONENTS Interpreter REQUIRED) add_library(cutlass_library_includes INTERFACE) add_library(nvidia::cutlass::library::includes ALIAS cutlass_library_includes)