From e8058eba1d6b6fc0026daca1f770fe0475ae499e Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 4 Apr 2013 21:43:32 +0000 Subject: [PATCH] backed off required python version to 2.6 -- this was actually when ZipFile.extractall was introduced. --- hm.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hm.py b/hm.py index b8b16900..d67948ed 100644 --- a/hm.py +++ b/hm.py @@ -42,10 +42,12 @@ if os.path.exists('build/toolchain.py'): from build import toolchain from getopt import gnu_getopt -# minimum required version -# 2.7 needed for ZipFile.extractall +# minimum required version. +# 2.6 needed for ZipFile.extractall. +# do not change to 2.7, as the build machines are still at 2.6 +# and are a massive pain in the ass to upgrade. requiredMajor = 2 -requiredMinor = 7 +requiredMinor = 6 # options used by all commands globalOptions = 'v'