From dd6cacb6e914d234ab377d8f32c16c3d9bc794bb Mon Sep 17 00:00:00 2001 From: Gary Lowell Date: Mon, 26 Aug 2013 16:38:37 -0700 Subject: [PATCH] setup.py: Add a version range to the python-boto dependency. Signed-off-by: Gary Lowell --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, -- 2.47.3