diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-07 18:19:13 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-14 12:53:27 +0100 |
commit | 8b90f1becd40a7f857d2fbe30eaffe218a976419 (patch) | |
tree | 29351a18131a44657ba2cf1cd1168aec5188cf48 /scripts/oe-buildenv-internal | |
parent | 075278db6f7a4783c952c72eebddf51a12f76075 (diff) | |
download | openembedded-core-8b90f1becd40a7f857d2fbe30eaffe218a976419.tar.gz openembedded-core-8b90f1becd40a7f857d2fbe30eaffe218a976419.tar.bz2 openembedded-core-8b90f1becd40a7f857d2fbe30eaffe218a976419.zip |
scripts/buildenv-internal/sanity: Update to python 2.7.3 as a minimum
We're finding bugs in python 2.6 and starting to require unittest
functionality in python 2.7.x. Its time to bump the minimum version
requirement. Anyone without python 2.7.x can use the buildtools-tarball
out to install a standalone python/git/tar setup which will work
with the system.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-buildenv-internal')
-rwxr-xr-x | scripts/oe-buildenv-internal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/oe-buildenv-internal b/scripts/oe-buildenv-internal index a33698c5ba..40d95b7871 100755 --- a/scripts/oe-buildenv-internal +++ b/scripts/oe-buildenv-internal @@ -43,9 +43,9 @@ fi # Similarly, we now have code that doesn't parse correctly with older # versions of Python, and rather than fixing that and being eternally # vigilant for any other new feature use, just check the version here. -py_v26_check=`python -c 'import sys; print sys.version_info >= (2,6,0)'` +py_v26_check=`python -c 'import sys; print sys.version_info >= (2,7,3)'` if [ "$py_v26_check" != "True" ]; then - echo "BitBake requires Python 2.6 or later" + echo "BitBake requires Python 2.7.3 or later" exit 1 fi |