Fix bad python 2.6 detection
This commit is contained in:
parent
7337b857de
commit
a34315818f
2
setup.py
2
setup.py
@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
|
|
||||||
py26_dependency = []
|
py26_dependency = []
|
||||||
if sys.version_info <= (2, 6):
|
if sys.version_info[:2] <= (2, 6):
|
||||||
py26_dependency = ["argparse >= 1.2.1", "ordereddict >= 1.1"]
|
py26_dependency = ["argparse >= 1.2.1", "ordereddict >= 1.1"]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user