diff options
| -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 876f7e3976..d3e90d03be 100644 --- a/bitbake/lib/bb/__init__.py +++ b/bitbake/lib/bb/__init__.py | |||
| @@ -12,8 +12,8 @@ | |||
| 12 | __version__ = "2.9.1" | 12 | __version__ = "2.9.1" |
| 13 | 13 | ||
| 14 | import sys | 14 | import sys |
| 15 | if sys.version_info < (3, 8, 0): | 15 | if sys.version_info < (3, 9, 0): |
| 16 | raise RuntimeError("Sorry, python 3.8.0 or later is required for this version of bitbake") | 16 | raise RuntimeError("Sorry, python 3.9.0 or later is required for this version of bitbake") |
| 17 | 17 | ||
| 18 | if sys.version_info < (3, 10, 0): | 18 | if sys.version_info < (3, 10, 0): |
| 19 | # With python 3.8 and 3.9, we see errors of "libgcc_s.so.1 must be installed for pthread_cancel to work" | 19 | # With python 3.8 and 3.9, we see errors of "libgcc_s.so.1 must be installed for pthread_cancel to work" |
