aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/__init__.py
diff options
context:
space:
mode:
authorJeremy Puhlman <jpuhlman@mvista.com>2016-05-12 15:32:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-01 15:28:23 +0100
commit710351610e3ca4a1b61abc67564f84907e9b2f1c (patch)
treeb2822756f9b5755fd4f6b1811969abfc7c8e3e74 /lib/bb/__init__.py
parentb19a4c5166303b1fa680582adf63e6a5564bfb4c (diff)
downloadbitbake-710351610e3ca4a1b61abc67564f84907e9b2f1c.tar.gz
lib/bb: Set required python 3 version to 3.4.0
get_context was added to mutliprocessing as part of 3.4.0 Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/__init__.py')
-rw-r--r--lib/bb/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index 6b85984ba..a98ebd1e1 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -24,8 +24,8 @@
__version__ = "1.31.0"
import sys
-if sys.version_info < (2, 7, 3):
- raise RuntimeError("Sorry, python 2.7.3 or later is required for this version of bitbake")
+if sys.version_info < (3, 4, 0):
+ raise RuntimeError("Sorry, python 3.4.0 or later is required for this version of bitbake")
class BBHandledException(Exception):