mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 13:07:09 +01:00
Merge pull request #3275 from beetbox/arcresu-patch-1
Make pathlib dependency in tests conditional
This commit is contained in:
commit
e4698a41da
1 changed files with 4 additions and 2 deletions
6
setup.py
6
setup.py
|
|
@ -115,10 +115,12 @@ setup(
|
|||
'rarfile',
|
||||
'responses',
|
||||
'pyxdg',
|
||||
'pathlib',
|
||||
'python-mpd2',
|
||||
'discogs-client'
|
||||
],
|
||||
] + (
|
||||
# Tests for the thumbnails plugin need pathlib on Python 2 too.
|
||||
['pathlib'] if (sys.version_info < (3, 4, 0)) else []
|
||||
),
|
||||
|
||||
# Plugin (optional) dependencies:
|
||||
extras_require={
|
||||
|
|
|
|||
Loading…
Reference in a new issue