From 779e008674ffb73bcff856b28cdd7956f2b94080 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 3 May 2019 16:39:43 +0200 Subject: [PATCH] jupyterhub 1.0 bump oauthenticator patch as well --- tljh/installer.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tljh/installer.py b/tljh/installer.py index 91395cf..e9ffbd1 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -189,13 +189,13 @@ def ensure_jupyterhub_package(prefix): and conda packages! """ conda.ensure_pip_packages(prefix, [ - 'jupyterhub==0.9.6', + 'jupyterhub==1.0.0', 'jupyterhub-dummyauthenticator==0.3.1', 'jupyterhub-systemdspawner==0.13', 'jupyterhub-firstuseauthenticator==0.12', 'jupyterhub-nativeauthenticator==0.0.4', 'jupyterhub-ldapauthenticator==1.2.2', - 'oauthenticator==0.8.1' + 'oauthenticator==0.8.2', ]) traefik.ensure_traefik_binary(prefix) @@ -242,7 +242,7 @@ def ensure_user_environment(user_requirements_txt_file): conda.ensure_pip_packages(USER_ENV_PREFIX, [ # JupyterHub + notebook package are base requirements for user environment - 'jupyterhub==0.9.6', + 'jupyterhub==1.0.0', 'notebook==5.7.8', # Install additional notebook frontends! 'jupyterlab==0.35.4', @@ -254,7 +254,7 @@ def ensure_user_environment(user_requirements_txt_file): # Most people consider ipywidgets to be part of the core notebook experience 'ipywidgets==7.4.2', # Pin tornado - 'tornado<6.0' + 'tornado<6.0', ]) if user_requirements_txt_file: