From 60c0c6be4fe5fe201dfae4bf531a5afc186e98df Mon Sep 17 00:00:00 2001 From: EPedrotti Date: Tue, 8 Jan 2019 14:40:01 +0100 Subject: [PATCH 1/2] fix missing enginio dependency --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 27e0418402e..c325a653d56 100644 --- a/requirements.txt +++ b/requirements.txt @@ -45,3 +45,4 @@ flask-jwt-simple==0.0.3 python-socketio==2.0.0 prompt_toolkit==1.0.14 pydot==1.2.4 +python-engineio==3.0 diff --git a/setup.py b/setup.py index 3fdd5fbc08e..1240c2df8ec 100644 --- a/setup.py +++ b/setup.py @@ -71,6 +71,7 @@ "prompt_toolkit==1.0.14", "flask-jwt-simple~=0.0.3", "python-socketio~=2.0", + "python-engineio~=3.0" "pydot~=1.2", ] From 4cc5f788ce3d7e8b9e6662b7815a45c693807213 Mon Sep 17 00:00:00 2001 From: EPedrotti Date: Tue, 8 Jan 2019 14:46:33 +0100 Subject: [PATCH 2/2] add missing comma --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1240c2df8ec..21fd732d803 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ "prompt_toolkit==1.0.14", "flask-jwt-simple~=0.0.3", "python-socketio~=2.0", - "python-engineio~=3.0" + "python-engineio~=3.0", "pydot~=1.2", ]