summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-10-05 10:38:51 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-15 13:45:50 +0100
commitebd7185e95fed38390bc71a8b2afe07d16cf93cd (patch)
treee8b2b0ab9f0eb62575ca8bb723e9a7c6f6c97803 /meta/classes
parenta976d65abae2ac4b9365edbea4aaf66c00fa73a8 (diff)
downloadpoky-ebd7185e95fed38390bc71a8b2afe07d16cf93cd.tar.gz
classes/sanity: Bump minimum python version to 3.5
Bumps the minimum python version to 3.5 to match bitbake and the test matrix (From OE-Core rev: 346f0efdecdab81504d181092204e89e85835d4f) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit df13c0f2348898023fb7ee1b229e9b5ccc893609) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 5ddde9cc9c..1486cce357 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -769,8 +769,8 @@ def check_sanity_everybuild(status, d):
769 769
770 # Check the Python version, we now have a minimum of Python 3.4 770 # Check the Python version, we now have a minimum of Python 3.4
771 import sys 771 import sys
772 if sys.hexversion < 0x03040000: 772 if sys.hexversion < 0x030500F0:
773 status.addresult('The system requires at least Python 3.4 to run. Please update your Python interpreter.\n') 773 status.addresult('The system requires at least Python 3.5 to run. Please update your Python interpreter.\n')
774 774
775 # Check the bitbake version meets minimum requirements 775 # Check the bitbake version meets minimum requirements
776 from distutils.version import LooseVersion 776 from distutils.version import LooseVersion