check for py 3.5 minimum requirement in setup.py

we do not test on 3.4 any more and have dropped support for it.
so we better enforce it in setup.py also.
This commit is contained in:
Thomas Waldmann 2017-10-06 19:38:28 +02:00
parent 21601d5f53
commit be9fb349de
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ from distutils.core import Command
import textwrap
min_python = (3, 4)
min_python = (3, 5)
my_python = sys.version_info
if my_python < min_python: