diff options
author | Thibault Saunier <tsaunier@gnome.org> | 2015-12-03 14:41:38 +0100 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2015-12-04 10:17:49 +0100 |
commit | 33b2a414e9f985da6e2149f4bab4512f00b400d0 (patch) | |
tree | 97a3591b986a4fdc9ec5b2e80b608bcb54be49b2 /meson.py | |
parent | 33558cd9799d7e1d056ccd5946c8cb575c760ffd (diff) | |
download | meson-33b2a414e9f985da6e2149f4bab4512f00b400d0.zip meson-33b2a414e9f985da6e2149f4bab4512f00b400d0.tar.gz meson-33b2a414e9f985da6e2149f4bab4512f00b400d0.tar.bz2 |
Make it working on python 3.3
Diffstat (limited to 'meson.py')
-rwxr-xr-x | meson.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |