backed off required python version to 2.6 -- this was actually when ZipFile.extractall was introduced.
This commit is contained in:
parent
6031ffb0df
commit
e8058eba1d
8
hm.py
8
hm.py
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue