diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2019-12-06 12:12:56 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-12-16 23:27:14 +0000 |
commit | 1dd6edf3e4d969b3cc6918c8de6e234140ce33c9 (patch) | |
tree | 79579dd0b62956d49cf717401abbde3e5b516ed3 /bitbake | |
parent | 86f318e524b435d73fba92a0aceda93fec135db7 (diff) | |
download | poky-1dd6edf3e4d969b3cc6918c8de6e234140ce33c9.tar.gz |
bitbake: 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]
(Bitbake rev: 1412dcc077b1bea10b72fc8b525d6258dca46d97)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.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 c144311be4..b9d8bfa769 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py | |||
@@ -12,8 +12,8 @@ | |||
12 | __version__ = "1.44.0" | 12 | __version__ = "1.44.0" |
13 | 13 | ||
14 | import sys | 14 | import sys |
15 | if sys.version_info < (3, 4, 0): | 15 | if sys.version_info < (3, 5, 0): |
16 | raise RuntimeError("Sorry, python 3.4.0 or later is required for this version of bitbake") | 16 | raise RuntimeError("Sorry, python 3.5.0 or later is required for this version of bitbake") |
17 | 17 | ||
18 | 18 | ||
19 | class BBHandledException(Exception): | 19 | class BBHandledException(Exception): |