mirror of
https://github.com/beetbox/beets.git
synced 2026-01-15 04:34:23 +01:00
fix up setup
This commit is contained in:
parent
533559136e
commit
45e63e6838
1 changed files with 3 additions and 2 deletions
5
setup.py
5
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue