From d7fc364ff4854ed5c255b19195eec034a1b8b151 Mon Sep 17 00:00:00 2001 From: timifasubaa <30888507+timifasubaa@users.noreply.github.com> Date: Tue, 19 Sep 2017 21:30:18 -0700 Subject: [PATCH] Fix idna requirement (#3497) There is often conflicting versions of idna. This fixes is to 2.5. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 94104776eb473..cb8fc94c8715a 100644 --- a/setup.py +++ b/setup.py @@ -58,6 +58,7 @@ def get_git_sha(): 'future>=0.16.0, <0.17', 'humanize==0.5.1', 'gunicorn==19.7.1', + 'idna==2.5', 'markdown==2.6.8', 'pandas==0.20.2', 'parsedatetime==2.0.0',