summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Puhlman <jpuhlman@mvista.com>2016-05-12 15:32:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:40 +0100
commit455f06497ebb589ab93c02322fbd0628a31ead73 (patch)
treede926aa2658f692d757631d89896c99cf9a9a6cf
parent1c6eabfbacd566fbd164b322c391f608c007b62b (diff)
downloadpoky-455f06497ebb589ab93c02322fbd0628a31ead73.tar.gz
bitbake: lib/bb: Set required python 3 version to 3.4.0
get_context was added to mutliprocessing as part of 3.4.0 (Bitbake rev: 9e38f3af524c27c2bf0c9b808c9b44b6f0f945fe) Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index 6b85984ba8..a98ebd1e13 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -24,8 +24,8 @@
24__version__ = "1.31.0" 24__version__ = "1.31.0"
25 25
26import sys 26import sys
27if sys.version_info < (2, 7, 3): 27if sys.version_info < (3, 4, 0):
28 raise RuntimeError("Sorry, python 2.7.3 or later is required for this version of bitbake") 28 raise RuntimeError("Sorry, python 3.4.0 or later is required for this version of bitbake")
29 29
30 30
31class BBHandledException(Exception): 31class BBHandledException(Exception):