From f6fe2b9132a8a32967e5186ab3f2727e286e5bbc Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 22 Jun 2020 10:52:58 +0200 Subject: [PATCH 1/3] install pyzmq --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 56447ad..a0b30fe 100644 --- a/scripts/install +++ b/scripts/install @@ -97,7 +97,7 @@ mkdir -p $final_path pushd $final_path -PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator --three +PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator pyzmq --three popd diff --git a/scripts/upgrade b/scripts/upgrade index 862539d..3d92a49 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -114,7 +114,7 @@ then pushd $final_path - PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator + PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install jupyterlab==$jupyterlab_version jupyterhub notebook jupyterhub-ldapauthenticator pyzmq ynh_exec_warn_less python3 -m pipenv run jupyterhub upgrade-db From a1caf0f1c736a28cb905740f97c9ad2137d1e166 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 22 Jun 2020 12:01:38 +0200 Subject: [PATCH 2/3] add libzmq3-dev --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index e4ce68f..b9ece47 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -5,7 +5,7 @@ #================================================= # dependencies used by the app -pkg_dependencies="python3-pip libffi-dev" +pkg_dependencies="python3-pip libffi-dev libzmq3-dev" nodejs_version="10" From 62f5619ad14ff1d04019c55e81f1e73a41ee7176 Mon Sep 17 00:00:00 2001 From: Kay0u Date: Mon, 22 Jun 2020 14:31:44 +0200 Subject: [PATCH 3/3] add python3-dev --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index b9ece47..152ab13 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -5,7 +5,7 @@ #================================================= # dependencies used by the app -pkg_dependencies="python3-pip libffi-dev libzmq3-dev" +pkg_dependencies="python3-dev python3-pip libffi-dev libzmq3-dev" nodejs_version="10"