[oe-commits] [bitbake] 01/04: Bump minimum python version to 3.5

git at git.openembedded.org git at git.openembedded.org
Fri Dec 13 16:14:14 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository bitbake.

commit 1412dcc077b1bea10b72fc8b525d6258dca46d97
Author: Joshua Watt <jpewhacker at gmail.com>
AuthorDate: Fri Dec 6 12:12:56 2019 -0600

    Bump minimum python version to 3.5
    
    The local hash equivalence server used by bitbake requires python 3.5,
    so bump up the minimum required version.
    
    [YOCTO #13678]
    
    Signed-off-by: Joshua Watt <JPEWhacker at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 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 c144311..b9d8bfa 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -12,8 +12,8 @@
 __version__ = "1.44.0"
 
 import sys
-if sys.version_info < (3, 4, 0):
-    raise RuntimeError("Sorry, python 3.4.0 or later is required for this version of bitbake")
+if sys.version_info < (3, 5, 0):
+    raise RuntimeError("Sorry, python 3.5.0 or later is required for this version of bitbake")
 
 
 class BBHandledException(Exception):

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list