Skip to content

Commit

Permalink
setup.py: fix check fro 3.5.2 which should be 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
dcbaker committed Nov 20, 2020
1 parent 630f940 commit 8d84d4b
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, 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
Expand Down

0 comments on commit 8d84d4b

Please sign in to comment.