fix up setup

This commit is contained in:
Andrew Rogl 2021-05-07 22:30:14 +10:00
parent 533559136e
commit 45e63e6838

View file

@ -122,7 +122,6 @@ setup(
'responses>=0.3.0',
'requests_oauthlib',
'reflink',
'py7zr',
] + (
# Tests for the thumbnails plugin need pathlib on Python 2 too.
['pathlib'] if (sys.version_info < (3, 4, 0)) else []
@ -131,7 +130,9 @@ setup(
] + [
'discogs-client' if (sys.version_info < (3, 0, 0))
else 'python3-discogs-client'
],
] + (
['py7zr'] if (sys.version_info > (3, 5, 0)) else []
),
'lint': [
'flake8',
'flake8-coding',