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:
parent
87a3b44a30
commit
ec59f6b350
1 changed files with 1 additions and 1 deletions
2
setup.py
2
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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue