From 86cfe24d7913245da9850b5a58a56f679bba2314 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sun, 31 Jul 2016 03:59:44 -0400 Subject: [PATCH] depend on six>=1.9 as it adds functions we need 1.9.0 is the release that added the `@py2_unicode_compatible` and the 3.x compatible unittest aliases we rely on --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9ab145e5d..07545998d 100755 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ setup( }, install_requires=[ - 'six', + 'six>=1.9', 'mutagen>=1.31', 'munkres', 'unidecode',