*really* upgraded python requirement to 2.7 (2.4 is missing ZipFile.extractall)
This commit is contained in:
parent
99ba56c361
commit
eb93fc5620
3
hm.py
3
hm.py
|
@ -43,8 +43,9 @@ from build import toolchain
|
|||
from getopt import gnu_getopt
|
||||
|
||||
# minimum required version
|
||||
# 2.7 needed for ZipFile.extractall
|
||||
requiredMajor = 2
|
||||
requiredMinor = 3
|
||||
requiredMinor = 7
|
||||
|
||||
# options used by all commands
|
||||
globalOptions = 'v'
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
import sys, os, ConfigParser, shutil, re, ftputil, zipfile
|
||||
from generators import Generator, EclipseGenerator, MakefilesGenerator
|
||||
|
||||
if sys.version_info >= (2, 7):
|
||||
if sys.version_info >= (2, 4):
|
||||
import subprocess
|
||||
|
||||
class InternalCommands:
|
||||
|
|
Loading…
Reference in New Issue