diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-04 11:56:02 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-04 11:56:02 +0200 |
commit | 66ff4a0e9134b7c7c646092c77351268bd121dbe (patch) | |
tree | c9d7e6f3011a34aa8bc370969d7344adb046079e /meson.py | |
parent | 33558cd9799d7e1d056ccd5946c8cb575c760ffd (diff) | |
parent | b15aa49af2c30921368cf6bf330919da476762eb (diff) | |
download | meson-66ff4a0e9134b7c7c646092c77351268bd121dbe.zip meson-66ff4a0e9134b7c7c646092c77351268bd121dbe.tar.gz meson-66ff4a0e9134b7c7c646092c77351268bd121dbe.tar.bz2 |
Merge Python 3.3 fix.
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 |