From d9481a0886d8e1a8cf04db4ed0796c6059e66826 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Mon, 26 Jan 2015 17:12:10 -0800 Subject: [PATCH] Require a newer enum34 Not sure what was wrong with 0.9, but it was crashing on first use on my system. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 277d5c249..76669c62c 100755 --- a/setup.py +++ b/setup.py @@ -76,7 +76,7 @@ setup( }, install_requires=[ - 'enum34', + 'enum34>=1.0.4', 'mutagen>=1.27', 'munkres', 'unidecode',