mirror of
https://github.com/beetbox/beets.git
synced 2025-12-14 20:43:41 +01:00
Use python-mpd2 instead of python-mpd. Fixes #1472.
This commit is contained in:
parent
d8cc2588cd
commit
687dc9ddcd
3 changed files with 5 additions and 5 deletions
|
|
@ -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`).
|
||||
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -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'],
|
||||
|
|
|
|||
2
tox.ini
2
tox.ini
|
|
@ -19,7 +19,7 @@ deps =
|
|||
pathlib
|
||||
pyxdg
|
||||
jellyfish
|
||||
python-mpd
|
||||
python-mpd2
|
||||
commands =
|
||||
nosetests {posargs}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue