aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-11-20 15:00:57 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-11-20 15:24:51 -0800
commit8d84d4b693cf80c1776806acc0ea9b3ff5ded53c (patch)
treee31c524529fffde12de7ff31d85db2bdf9cbddea
parent630f9407ac0cdc7bd945ed3c5e629b3786d99d44 (diff)
downloadmeson-8d84d4b693cf80c1776806acc0ea9b3ff5ded53c.zip
meson-8d84d4b693cf80c1776806acc0ea9b3ff5ded53c.tar.gz
meson-8d84d4b693cf80c1776806acc0ea9b3ff5ded53c.tar.bz2
setup.py: fix check fro 3.5.2 which should be 3.6
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 145f19c..70a76e5 100644
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,9 @@
import sys
-if sys.version_info < (3, 5, 2):
+if sys.version_info < (3, 6):
raise SystemExit('ERROR: Tried to install Meson with an unsupported Python version: \n{}'
- '\nMeson requires Python 3.5.2 or greater'.format(sys.version))
+ '\nMeson requires Python 3.6.0 or greater'.format(sys.version))
from mesonbuild.coredata import version
from setuptools import setup