setup.py >= python 3.5.2

pull/5641/head
Michael Hirsch, Ph.D 6 years ago committed by Jussi Pakkanen
parent a90a9aac84
commit 23ef8045a9
  1. 4
      setup.py

@ -16,9 +16,9 @@
import sys 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{}' 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 mesonbuild.coredata import version
from setuptools import setup from setuptools import setup

Loading…
Cancel
Save