From 5ad76abc3df9a5b291720ae075ad2c87e6cc290e Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 4 Sep 2015 09:31:13 +0200 Subject: [PATCH] deps: Require Requests >= 2.0 --- docs/changelog.rst | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index c66a738e..1e816468 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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`) diff --git a/setup.py b/setup.py index ba74179c..a353a932 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ setup( include_package_data=True, install_requires=[ 'Pykka >= 1.1', - 'requests', + 'requests >= 2.0', 'setuptools', 'tornado >= 2.3', ],