From: Joshua Watt Date: Mon, 5 Oct 2020 15:38:51 +0000 (-0500) Subject: classes/sanity: Bump minimum python version to 3.5 X-Git-Tag: 2020-04.4-dunfell~104 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=346f0efdecdab81504d181092204e89e85835d4f;p=openembedded-core.git classes/sanity: Bump minimum python version to 3.5 Bumps the minimum python version to 3.5 to match bitbake and the test matrix Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie (cherry picked from commit df13c0f2348898023fb7ee1b229e9b5ccc893609) Signed-off-by: Steve Sakoman --- 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): # Check the Python version, we now have a minimum of Python 3.4 import sys - if sys.hexversion < 0x03040000: - status.addresult('The system requires at least Python 3.4 to run. Please update your Python interpreter.\n') + if sys.hexversion < 0x030500F0: + status.addresult('The system requires at least Python 3.5 to run. Please update your Python interpreter.\n') # Check the bitbake version meets minimum requirements from distutils.version import LooseVersion