closes #39: forgot some debugging code in setup.py :((

This commit is contained in:
Mark Vartanyan 2019-06-04 12:57:43 +03:00
parent f042b4661f
commit 25a0ff5884
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ import sys
# PyYAML 3.11 was the last to support Python 2.6
# This code limits pyyaml version for older pythons
pyyaml_version = 'pyyaml >= 3.10' # fresh
if sys.version_info[:2] == (2, 6) or True:
if sys.version_info[:2] == (2, 6):
pyyaml_version = 'pyyaml<=3.11'