'long':'Set up and configure your development environment.',
'priority':20,
},
'misc':{
'short':'Potpourri',
'long':'Potent potables and assorted snacks.',
'priority':10,
},
'disabled':{
'short':'Disabled',
'long':'The disabled commands are hidden by default. Use -v to display them. These commands are unavailable for your current context, run "mach <command>" to see why.',
'priority':0,
}
}
defbootstrap(test_package_root):
# Ensure we are running Python 2.7+. We put this check here so we generate a
# user-friendly error message rather than a cryptic stack trace on module
# import.
ifsys.version_info[0]!=2orsys.version_info[1]<7:
print('Python 2.7 or above (but not Python 3) is required to run mach.')
print('You are running Python',platform.python_version())