aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2021-10-31 19:05:46 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-01-10 18:36:56 -0500
commitad525dcce45487def9d3950bed159f1c158e3581 (patch)
tree465e311a2af72ba5fd991acabc3366e405e03fe5 /setup.py
parent0c30db20b1769f8cc9082bb9f043882e86ad738e (diff)
downloadmeson-ad525dcce45487def9d3950bed159f1c158e3581.zip
meson-ad525dcce45487def9d3950bed159f1c158e3581.tar.gz
meson-ad525dcce45487def9d3950bed159f1c158e3581.tar.bz2
bump minimum required version of python to 3.7
Comment out the pending deprecation notice. It cannot be reached anymore, but is still useful for the next time we do a version bump.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 976afb2..7ff28e2 100644
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,9 @@
import sys
-if sys.version_info < (3, 6):
+if sys.version_info < (3, 7):
raise SystemExit('ERROR: Tried to install Meson with an unsupported Python version: \n{}'
- '\nMeson requires Python 3.6.0 or greater'.format(sys.version))
+ '\nMeson requires Python 3.7.0 or greater'.format(sys.version))
from setuptools import setup