From 3414f36f67ee7f425f5bdd90c534da6ec9e3fb3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 3 Dec 2017 17:18:38 +0100 Subject: Increase requirement to >=Py3.6 --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8c7fa35..3e57c9e 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,10 @@ from distutils import log from setuptools.command.develop import develop as _develop +import sys +if sys.version_info < (3,6): + sys.exit('Sorry, Python < 3.6 is not supported') + class develop(_develop): def install_for_development(self): self.run_command('build_clib') -- cgit v1.2.3