diff options
author | Jeremy Puhlman <jpuhlman@mvista.com> | 2016-05-12 15:32:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:03 +0100 |
commit | e80a8c25dca1178bf31840c4672cc4ca1ca7ce18 (patch) | |
tree | ea177d1039b2e7a73daa6bd562a7a54635f0cfa0 /bitbake | |
parent | a15e538d5009dfcb20a16a861c2aacd134e38593 (diff) | |
download | poky-e80a8c25dca1178bf31840c4672cc4ca1ca7ce18.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: 710351610e3ca4a1b61abc67564f84907e9b2f1c)
Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/__init__.py | 4 |
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 | ||
26 | import sys | 26 | import sys |
27 | if sys.version_info < (2, 7, 3): | 27 | if 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 | ||
31 | class BBHandledException(Exception): | 31 | class BBHandledException(Exception): |