Commit 1d39d5eb authored by Jason Madden's avatar Jason Madden

define py36

parent 4e76c410
......@@ -61,6 +61,7 @@ if sys.platform.startswith('win'):
PY2 = None
PY3 = None
PY34 = None
PY36 = None
NON_APPLICABLE_SUFFIXES = []
if sys.version_info[0] == 3:
......@@ -70,6 +71,8 @@ if sys.version_info[0] == 3:
PY3 = True
if sys.version_info[1] >= 4:
PY34 = True
if sys.version_info[1] >= 6:
PY36 = True
elif sys.version_info[0] == 2:
# Any python 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment