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
This commit is contained in:
Julien St-Laurent 2013-02-06 21:35:20 -05:00
parent 87a3b44a30
commit ec59f6b350

View file

@ -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',