Skip to content

Commit

Permalink
setup.py >= python 3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision authored and jpakkane committed Jul 11, 2019
1 parent a90a9aa commit 23ef804
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 23ef804

Please sign in to comment.