mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-07 06:03:40 +08:00
backed off required python version to 2.6 -- this was actually when ZipFile.extractall was introduced.
This commit is contained in:
8
hm.py
8
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'
|
||||
|
||||
Reference in New Issue
Block a user