From ec59f6b3508b395987f55e62c8000102fae2d0f5 Mon Sep 17 00:00:00 2001 From: Julien St-Laurent Date: Wed, 6 Feb 2013 21:35:20 -0500 Subject: [PATCH] Allow requests version higher than 0.14.0, but lower than the major changes of requests 1.0.0 This will allow Twython to be used with other libraries (such as python-tumblpy) that require requests higher than 0.14.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7b4cb5b..b02eafd 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( include_package_data=True, # Package dependencies. - install_requires=['simplejson', 'requests==0.14.0'], + install_requires=['simplejson', 'requests>=0.14.0, <1.0.0'], # Metadata for PyPI. author='Ryan McGrath',