Skip to content

Commit

Permalink
Merge branch 'setuppy-regress' into develop
Browse files Browse the repository at this point in the history
* setuppy-regress:
  Fix regression with old version of pip and cond deps
  • Loading branch information
jamesls committed Jun 12, 2015
2 parents 559ebfa + 4fbdd3a commit 7f7cee9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
'rsa>=3.1.2,<=3.1.4']


if sys.version_info[:2] == (2, 6):
# For python2.6 we have to require argparse since it
# was not in stdlib until 2.7.
requires.append('argparse>=1.1')


setup_options = dict(
name='awscli',
version=awscli.__version__,
Expand Down

0 comments on commit 7f7cee9

Please sign in to comment.