summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgrabner <pjg.github@ubergrabner.net>2014-04-27 18:06:49 -0400
committergrabner <pjg.github@ubergrabner.net>2014-04-27 18:06:49 -0400
commit2338686d070bfd7ff64a8fa83f88b62a921ba719 (patch)
treef96df9dbc864fa0e39b458a995f433c45b0250d9
parent5615b49efd824dda694abc90417d8fba5a2b13fc (diff)
downloadiniherit-2338686d070bfd7ff64a8fa83f88b62a921ba719.tar.gz
simplified installation for py2 and old distribute
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7f55b62..e75edb4 100755
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ test_requires = [
]
requires = [
- 'distribute >= 0.7.3',
+ 'distribute >= ' + ( '0.7.3' if sys.hexversion > 0x03000000 else '0.6.24' ),
'six >= 1.6.1',
]