From 4db04840b149982ef55203c06c90c33238fb1256 Mon Sep 17 00:00:00 2001 From: Priit Laes Date: Sat, 12 Mar 2016 11:53:33 +0200 Subject: [PATCH] python: We only support 2.7.x Python 2.7 is currently the only upstream-supported 2.x version. Python 2.6 is not supported by upstream since 2013 and there will be no 2.8 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8044d31667..84fe49a12b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -401,9 +401,9 @@ if(NOT FREECAD_LIBPACK_USE OR FREECAD_LIBPACK_CHECKFILE_CLBUNDLER) # -------------------------------- Python -------------------------------- -#http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677598 +# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677598 # Acceptable versions of Python -set(Python_ADDITIONAL_VERSIONS "2.5" "2.6" "2.7" "2.8" "2.9") +set(Python_ADDITIONAL_VERSIONS "2.7") # For building on OS X if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")