mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
Only pin Jellyfish version on py2
This commit is contained in:
parent
864f9f9167
commit
7360bbc152
2 changed files with 12 additions and 4 deletions
|
|
@ -86,7 +86,8 @@ Changes:
|
|||
|
||||
Fixes:
|
||||
|
||||
* Pin jellyfish requirement to version 0.6.0 to maintain python 2 compatibility.
|
||||
* On Python 2, pin the Jellyfish requirement to version 0.6.0 for
|
||||
compatibility.
|
||||
* A new importer option, :ref:`ignore_data_tracks`, lets you skip audio tracks
|
||||
contained in data files :bug:`3021`
|
||||
* Restore iTunes Store album art source, and remove the dependency on
|
||||
|
|
|
|||
13
setup.py
13
setup.py
|
|
@ -92,9 +92,16 @@ setup(
|
|||
'unidecode',
|
||||
'musicbrainzngs>=0.4',
|
||||
'pyyaml',
|
||||
'jellyfish==0.6.0',
|
||||
] + (['colorama'] if (sys.platform == 'win32') else []) +
|
||||
(['enum34>=1.0.4'] if sys.version_info < (3, 4, 0) else []),
|
||||
] + (
|
||||
# Use the backport of Python 3.4's `enum` module.
|
||||
['enum34>=1.0.4'] if sys.version_info < (3, 4, 0) else []
|
||||
) + (
|
||||
# Pin a Python 2-compatible version of Jellyfish.
|
||||
['jellyfish==0.6.0'] if sys.version_info < (3, 4, 0) else ['jellyfish']
|
||||
) + (
|
||||
# Support for ANSI console colors on Windows.
|
||||
['colorama'] if (sys.platform == 'win32') else []
|
||||
),
|
||||
|
||||
tests_require=[
|
||||
'beautifulsoup4',
|
||||
|
|
|
|||
Loading…
Reference in a new issue