aboutsummaryrefslogtreecommitdiffstats
path: root/lib
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:00:34 +0100
commita3050aee21b6a23b55232d52f89980a3bbd3a290 (patch)
tree7ed01847ac6328a02dcf446dd421fd7f6ec091df /lib
parent4104850dd36096a9ff01836c5fca9ac0e452bcf8 (diff)
downloadbitbake-a3050aee21b6a23b55232d52f89980a3bbd3a290.tar.gz
bitbake: Make 3.6.0 the minimum python version
OE-Core did this a while ago, it is simpler if bitbake matches. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-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 c1e30697b..5c248d365 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -12,8 +12,8 @@
__version__ = "1.51.1"
import sys
-if sys.version_info < (3, 5, 0):
- raise RuntimeError("Sorry, python 3.5.0 or later is required for this version of bitbake")
+if sys.version_info < (3, 6, 0):
+ raise RuntimeError("Sorry, python 3.6.0 or later is required for this version of bitbake")
class BBHandledException(Exception):