From 11b872943bbc4179f6d7ddeb76d2fa3a06334a6a Mon Sep 17 00:00:00 2001 From: GeorgianaElena Date: Wed, 23 Dec 2020 14:01:01 +0200 Subject: [PATCH] Pin chardet in hub env --- tljh/installer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tljh/installer.py b/tljh/installer.py index c3ea99e..f3cc989 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -222,7 +222,7 @@ def ensure_jupyterhub_package(prefix): conda.ensure_pip_packages( prefix, [ - "jupyterhub==1.2.0", + "jupyterhub==1.2.2", "jupyterhub-dummyauthenticator==0.3.1", "jupyterhub-systemdspawner==0.15", "jupyterhub-firstuseauthenticator==0.14.1", @@ -231,6 +231,7 @@ def ensure_jupyterhub_package(prefix): "jupyterhub-tmpauthenticator==0.6", "oauthenticator==0.10.0", "jupyterhub-idle-culler==1.0", + "chardet==3.0.4", ], ) traefik.ensure_traefik_binary(prefix)