* [OE-core][PATCH] classes/sanity: Bump minimum python version to 3.5
@ 2020-10-05 15:38 Joshua Watt
0 siblings, 0 replies; only message in thread
From: Joshua Watt @ 2020-10-05 15:38 UTC (permalink / raw)
To: openembedded-core; +Cc: Joshua Watt
Bumps the minimum python version to 3.5 to match bitbake and the test
matrix
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
meta/classes/sanity.bbclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index e021b9d240..0eee89d71c 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
--
2.28.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-10-05 15:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-05 15:38 [OE-core][PATCH] classes/sanity: Bump minimum python version to 3.5 Joshua Watt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox