From 1a6427daf692aac485c1e3282c24c2a4f675dade Mon Sep 17 00:00:00 2001 From: Liu Dongqing Date: Mon, 5 Nov 2018 13:51:05 +0800 Subject: [PATCH] Specified ipython & jupyter-console version #12 There is a conflict of versions for dependency 'prompt-toolkit', see https://github.com/HDI-Project/FeatureHub/issues/12 and https://github.com/jupyter/jupyter_console/issues/158. To resolve it, I tried to specify the versions of ipython & jupyter-console. --- src/setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/setup.py b/src/setup.py index efff4a8..94d8aed 100644 --- a/src/setup.py +++ b/src/setup.py @@ -10,6 +10,8 @@ requirements = ['dill', 'flask', + 'ipython<=6.5.0', + 'jupyter-console==5.2.0', 'jupyter', 'jupyterhub', 'matplotlib',