From 3d00ce5316d352dc9717410c51ff41083110a730 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 7 Dec 2020 12:53:38 +0100 Subject: [PATCH] bump systemdspawner to 0.15 --- tljh/installer.py | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/tljh/installer.py b/tljh/installer.py index de56be5..7c4b78c 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -219,17 +219,20 @@ def ensure_jupyterhub_package(prefix): 'pycurl==7.43.*' ]) - conda.ensure_pip_packages(prefix, [ - 'jupyterhub==1.1.0', - 'jupyterhub-dummyauthenticator==0.3.1', - 'jupyterhub-systemdspawner==0.14', - 'jupyterhub-firstuseauthenticator==0.14.1', - 'jupyterhub-nativeauthenticator==0.0.5', - 'jupyterhub-ldapauthenticator==1.3.0', - 'jupyterhub-tmpauthenticator==0.6', - 'oauthenticator==0.10.0', - 'jupyterhub-idle-culler==1.0' - ]) + conda.ensure_pip_packages( + prefix, + [ + "jupyterhub==1.1.0", + "jupyterhub-dummyauthenticator==0.3.1", + "jupyterhub-systemdspawner==0.15", + "jupyterhub-firstuseauthenticator==0.14.1", + "jupyterhub-nativeauthenticator==0.0.5", + "jupyterhub-ldapauthenticator==1.3.0", + "jupyterhub-tmpauthenticator==0.6", + "oauthenticator==0.10.0", + "jupyterhub-idle-culler==1.0", + ], + ) traefik.ensure_traefik_binary(prefix)