Use python-mpd2 instead of python-mpd. Fixes #1472.

This commit is contained in:
Kylie McClain 2015-05-24 18:21:36 -04:00
parent d8cc2588cd
commit 687dc9ddcd
3 changed files with 5 additions and 5 deletions

View file

@ -14,12 +14,12 @@ habits from `MPD`_. It collects the following information about tracks:
Installing Dependencies
-----------------------
This plugin requires the python-mpd library in order to talk to the MPD
This plugin requires the python-mpd2 library in order to talk to the MPD
server.
Install the library from `pip`_, like so::
$ pip install python-mpd
$ pip install python-mpd2
Add the ``mpdstats`` plugin to your configuration (see :ref:`using-plugins`).

View file

@ -105,7 +105,7 @@ setup(
'responses',
'pyxdg',
'pathlib',
'python-mpd',
'python-mpd2',
],
# Plugin (optional) dependencies:
@ -115,7 +115,7 @@ setup(
'discogs': ['discogs-client>=2.1.0'],
'echonest': ['pyechonest'],
'lastgenre': ['pylast'],
'mpdstats': ['python-mpd'],
'mpdstats': ['python-mpd2'],
'web': ['flask', 'flask-cors'],
'import': ['rarfile'],
'thumbnails': ['pathlib', 'pyxdg'],

View file

@ -19,7 +19,7 @@ deps =
pathlib
pyxdg
jellyfish
python-mpd
python-mpd2
commands =
nosetests {posargs}