mirror of
https://github.com/beetbox/beets.git
synced 2026-01-03 22:42:44 +01:00
Merge pull request #3112 from efischer19/master
Maintain python 2 compatibility
This commit is contained in:
commit
864f9f9167
2 changed files with 2 additions and 1 deletions
|
|
@ -86,6 +86,7 @@ Changes:
|
|||
|
||||
Fixes:
|
||||
|
||||
* Pin jellyfish requirement to version 0.6.0 to maintain python 2 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
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -92,7 +92,7 @@ setup(
|
|||
'unidecode',
|
||||
'musicbrainzngs>=0.4',
|
||||
'pyyaml',
|
||||
'jellyfish',
|
||||
'jellyfish==0.6.0',
|
||||
] + (['colorama'] if (sys.platform == 'win32') else []) +
|
||||
(['enum34>=1.0.4'] if sys.version_info < (3, 4, 0) else []),
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue