diff options
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/classes/sanity.bbclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 0eb6ae334b..e692f33839 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
| @@ -381,11 +381,10 @@ def check_sanity(sanity_data): | |||
| 381 | 381 | ||
| 382 | messages = "" | 382 | messages = "" |
| 383 | 383 | ||
| 384 | # Check the Python version, we now use Python 2.6 features in | 384 | # Check the Python version, we now have a minimum of Python 2.7.3 |
| 385 | # various classes | ||
| 386 | import sys | 385 | import sys |
| 387 | if sys.hexversion < 0x020600F0: | 386 | if sys.hexversion < 0x020703F0: |
| 388 | messages = messages + 'The system requires at least Python 2.6 to run. Please update your Python interpreter.\n' | 387 | messages = messages + 'The system requires at least Python 2.7.3 to run. Please update your Python interpreter.\n' |
| 389 | # Check the python install is complete. glib-2.0-natives requries | 388 | # Check the python install is complete. glib-2.0-natives requries |
| 390 | # xml.parsers.expat | 389 | # xml.parsers.expat |
| 391 | try: | 390 | try: |
