From 33b2a414e9f985da6e2149f4bab4512f00b400d0 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Thu, 3 Dec 2015 14:41:38 +0100 Subject: Make it working on python 3.3 --- meson.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson.py') diff --git a/meson.py b/meson.py index e7428ddbd..0ba344747 100755 --- a/meson.py +++ b/meson.py @@ -164,8 +164,8 @@ itself as required.''' pickle.dump(b, open(dumpfile, 'wb')) def run(args): - if sys.version_info < (3, 4): - print('Meson works correctly only with python 3.4+.') + if sys.version_info < (3, 3): + print('Meson works correctly only with python 3.3+.') print('You have python %s.' % sys.version) print('Please update your environment') return 1 -- cgit v1.2.3