summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/__init__.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-17 17:13:59 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-08-18 17:01:06 +0100
commite7bcbc61950c5bdcefb4c91b15867e83c8c12fab (patch)
tree4f4db97c826822a98c0bd0e78c3a8f96ae032d7b /bitbake/lib/bb/__init__.py
parentbc65a37ef50faba339fb54d6a89ef9da0298bbbe (diff)
downloadpoky-e7bcbc61950c5bdcefb4c91b15867e83c8c12fab.tar.gz
bitbake: bitbake: Make 3.6.0 the minimum python version
OE-Core did this a while ago, it is simpler if bitbake matches. (Bitbake rev: a3050aee21b6a23b55232d52f89980a3bbd3a290) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/__init__.py')
-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 c1e30697b3..5c248d3655 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -12,8 +12,8 @@
12__version__ = "1.51.1" 12__version__ = "1.51.1"
13 13
14import sys 14import sys
15if sys.version_info < (3, 5, 0): 15if sys.version_info < (3, 6, 0):
16 raise RuntimeError("Sorry, python 3.5.0 or later is required for this version of bitbake") 16 raise RuntimeError("Sorry, python 3.6.0 or later is required for this version of bitbake")
17 17
18 18
19class BBHandledException(Exception): 19class BBHandledException(Exception):