From a01d153a8baac7136c2797c95357e74dd8872026 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 7 Jun 2013 18:14:46 +0100 Subject: [PATCH] bitbake: Bump minimum python version to 2.7.3 Signed-off-by: Richard Purdie --- lib/bb/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py index deed4e6e05a..a9960c2a92f 100644 --- a/lib/bb/__init__.py +++ b/lib/bb/__init__.py @@ -24,8 +24,8 @@ __version__ = "1.19.0" import sys -if sys.version_info < (2, 6, 0): - raise RuntimeError("Sorry, python 2.6.0 or later is required for this version of bitbake") +if sys.version_info < (2, 7, 3): + raise RuntimeError("Sorry, python 2.7.3 or later is required for this version of bitbake") class BBHandledException(Exception): -- 2.47.3