bump releasetools python requirement to 2.7

These scripts already use some post-2.4 features, so let's make it
official: Python 2.7 is needed to run them.

Change-Id: I256e9ed99b0b62abe4e22a7b1f811acb7419e88e
This commit is contained in:
Doug Zongker
2014-02-18 10:57:07 -08:00
parent 0158f8f71c
commit cf6d5a9074
5 changed files with 10 additions and 10 deletions

View File

@@ -41,8 +41,8 @@ Usage: check_target_file_signatures [flags] target_files
import sys
if sys.hexversion < 0x02040000:
print >> sys.stderr, "Python 2.4 or newer is required."
if sys.hexversion < 0x02070000:
print >> sys.stderr, "Python 2.7 or newer is required."
sys.exit(1)
import os