backed off required python version to 2.6 -- this was actually when ZipFile.extractall was introduced.

This commit is contained in:
Nick Bolton 2013-04-04 21:43:32 +00:00
parent 6031ffb0df
commit e8058eba1d
1 changed files with 5 additions and 3 deletions

8
hm.py
View File

@ -42,10 +42,12 @@ if os.path.exists('build/toolchain.py'):
from build import toolchain from build import toolchain
from getopt import gnu_getopt from getopt import gnu_getopt
# minimum required version # minimum required version.
# 2.7 needed for ZipFile.extractall # 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 requiredMajor = 2
requiredMinor = 7 requiredMinor = 6
# options used by all commands # options used by all commands
globalOptions = 'v' globalOptions = 'v'