Merge pull request #3089 from ThomasWaldmann/py35-requirement

check for py 3.5 minimum requirement in setup.py
This commit is contained in:
TW 2017-10-06 20:24:24 +02:00 committed by GitHub
commit 8cccd63df1
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: