deps: Require Requests >= 2.0

This commit is contained in:
Stein Magnus Jodal 2015-09-04 09:31:13 +02:00
parent 9957b3c2be
commit 5ad76abc3d
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ v1.1.1 (UNRELEASED)
Bug fix release.
- Dependencies: Specify that we need Requests >= 2.0, not just any version.
- Core: Make :meth:`mopidy.core.LibraryController.refresh` work for all
backends with a library provider. Previously, it wrongly worked for all
backends with a playlists provider. (Fixes: :issue:`1257`)

View File

@ -25,7 +25,7 @@ setup(
include_package_data=True,
install_requires=[
'Pykka >= 1.1',
'requests',
'requests >= 2.0',
'setuptools',
'tornado >= 2.3',
],