summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-07-05 18:13:47 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-11 22:37:25 +0300
commit23ef8045a9c14a3f384b211ea3b3d262efb6c28d (patch)
treeec8e393a4490778f0a44ae98a12f0312952d0201
parenta90a9aac84822137c1829445fc5de630bf4e3513 (diff)
downloadmeson-23ef8045a9c14a3f384b211ea3b3d262efb6c28d.tar.gz
setup.py >= python 3.5.2
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 442e02a17..5a9c9477c 100644
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,9 @@
import sys
-if sys.version_info < (3, 5, 0):
+if sys.version_info < (3, 5, 2):
raise SystemExit('ERROR: Tried to install Meson with an unsupported Python version: \n{}'
- '\nMeson requires Python 3.5.0 or greater'.format(sys.version))
+ '\nMeson requires Python 3.5.2 or greater'.format(sys.version))
from mesonbuild.coredata import version
from setuptools import setup