From: Gary Lowell Date: Mon, 26 Aug 2013 23:38:37 +0000 (-0700) Subject: setup.py: Add a version range to the python-boto dependency. X-Git-Tag: v1.1~27 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=dd6cacb6e914d234ab377d8f32c16c3d9bc794bb;p=radosgw-agent.git setup.py: Add a version range to the python-boto dependency. Signed-off-by: Gary Lowell --- diff --git a/requirements.txt b/requirements.txt index e219c2d..f2d62f1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ argparse -boto ==2.2.2 +boto >=2.2.2,<3.0.0 requests PyYAML diff --git a/setup.py b/setup.py index f701bed..b1ebc72 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( install_requires=[ 'setuptools', - 'boto ==2.2.2', + 'boto>=2.2.2,<3.0', 'requests', ] + install_requires,