From 60e8f7a60105bcd5b156c91107fefc253f22afbc Mon Sep 17 00:00:00 2001 From: Anatoly Baksheev Date: Fri, 2 Jan 2015 20:10:35 +0300 Subject: [PATCH] reduced NumPy requirement from 1.7.1 to 1.6.1 --- cmake/Dependencies.cmake | 2 +- cmake/Summary.cmake | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cmake/Dependencies.cmake b/cmake/Dependencies.cmake index 905da4aedc0..3cb6752af82 100644 --- a/cmake/Dependencies.cmake +++ b/cmake/Dependencies.cmake @@ -94,7 +94,7 @@ if(BUILD_python) # disable Python 3 search find_package(PythonInterp 2.7) find_package(PythonLibs 2.7) - find_package(NumPy 1.7.1) + find_package(NumPy 1.6.1) find_package(Boost 1.46 COMPONENTS python) if(PYTHONLIBS_FOUND AND NUMPY_FOUND AND Boost_PYTHON_FOUND) diff --git a/cmake/Summary.cmake b/cmake/Summary.cmake index b7318e2f8a6..97c1be2d807 100644 --- a/cmake/Summary.cmake +++ b/cmake/Summary.cmake @@ -107,6 +107,7 @@ function(caffe_print_configuration_summary) caffe_status(" Build type : ${CMAKE_BUILD_TYPE}") caffe_status(" BUILD_python : ${BUILD_python}") caffe_status(" BUILD_matlab : ${BUILD_matlab}") + caffe_status(" BUILD_docs : ${BUILD_docs}") caffe_status(" CPU_ONLY : ${CPU_ONLY}") caffe_status("") caffe_status("Dependencies:")