setup.py: fix check fro 3.5.2 which should be 3.6

pull/8011/head
Dylan Baker 4 years ago
parent 630f9407ac
commit 8d84d4b693
  1. 4
      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

Loading…
Cancel
Save