diff options
author | Doug Zongker <dougz@android.com> | 2014-02-18 10:57:07 -0800 |
---|---|---|
committer | Doug Zongker <dougz@android.com> | 2014-02-18 10:57:07 -0800 |
commit | cf6d5a90740e50e03d9f16c6fd449d90d396f924 (patch) | |
tree | 0ff146600c7b870d5357db751c7c30921030b2ef /tools/releasetools/check_target_files_signatures | |
parent | 0158f8f71c78caa0ff8c02ddc2d6698cc90214dd (diff) | |
download | build-cf6d5a90740e50e03d9f16c6fd449d90d396f924.zip build-cf6d5a90740e50e03d9f16c6fd449d90d396f924.tar.gz build-cf6d5a90740e50e03d9f16c6fd449d90d396f924.tar.bz2 |
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
Diffstat (limited to 'tools/releasetools/check_target_files_signatures')
-rwxr-xr-x | tools/releasetools/check_target_files_signatures | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/releasetools/check_target_files_signatures b/tools/releasetools/check_target_files_signatures index 45d30a6..b2f46c1 100755 --- a/tools/releasetools/check_target_files_signatures +++ b/tools/releasetools/check_target_files_signatures @@ -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 |