]> git-server-git.apps.pok.os.sepia.ceph.com Git - radosgw-agent.git/commitdiff
requirements: set lower bound for requests
authorJosh Durgin <josh.durgin@inktank.com>
Wed, 30 Oct 2013 16:44:15 +0000 (09:44 -0700)
committerJosh Durgin <josh.durgin@inktank.com>
Wed, 30 Oct 2013 16:44:15 +0000 (09:44 -0700)
1.2.1 includes url-encoding headers, which we rely on.

Signed-off-by: Josh Durgin <josh.durgin@inktank.com>
requirements.txt
setup.py

index f2d62f1b44f8cf42e383a524fd5dc778e8038c29..2ac9bc100260c603b3aac20d17bbcf25755294e3 100644 (file)
@@ -1,4 +1,4 @@
 argparse
 boto >=2.2.2,<3.0.0
-requests
+requests >=1.2.1
 PyYAML
index 9fb12ee64abcf20f3e8238af545354703181a4ec..6083c3a1e72f5909e896c755f55ab2ae1cb34400 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -22,8 +22,8 @@ setup(
 
     install_requires=[
         'setuptools',
-        'boto>=2.2.2,<3.0',
-        'requests',
+        'boto >=2.2.2,<3.0.0',
+        'requests >=1.2.1',
         ] + install_requires,
 
     test_requires=[