From 26ac1176ab6a693a970cdcd5fef8b24573e90910 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 3 Apr 2024 22:54:33 +0200 Subject: [PATCH] test hold-back jh in user env --- tljh/installer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tljh/installer.py b/tljh/installer.py index 5a9d7672..3dbbfc01 100644 --- a/tljh/installer.py +++ b/tljh/installer.py @@ -283,6 +283,7 @@ def ensure_user_environment(user_requirements_txt_file): # with open(os.path.join(HERE, "requirements-hub-env.txt")) as f: jh_version_spec = [l for l in f if l.startswith("jupyterhub>=")][0] + jh_version_spec = "jupyterhub==4.0.*" conda.ensure_pip_packages(USER_ENV_PREFIX, [jh_version_spec], upgrade=True) # Install user environment extras for initial installations