Merge pull request #3275 from beetbox/arcresu-patch-1

Make pathlib dependency in tests conditional
This commit is contained in:
Adrian Sampson 2019-05-30 09:08:49 -04:00
commit e4698a41da

View file

@ -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={