diff --git a/docs/changelog.rst b/docs/changelog.rst index a9f4b7538..1298090aa 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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 diff --git a/setup.py b/setup.py index cda52f360..19efb9451 100755 --- a/setup.py +++ b/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 []),