Hi, I was wondering if there is a timeline for when TLJH will switch to JupyterHub 2.0? Right now, it uses version 1.5. As far as I understand it’s a major update and there have been changes to configuration and extensions.
As a related question, is there an official way to pin versions? I am running https://tljh.jupyter.org/bootstrap.py from an ansible script and would like to make it reproducable. Is setting TLJH_BOOTSTRAP_PIP_SPEC to a certain commit the right way to go?
You need to pass the env-var to the interpreter that’s executing the script, so try something like curl -L https://raw.githubusercontent.com/jupyterhub/the-littlest-jupyterhub/master/bootstrap/bootstrap.py | sudo TLJH_BOOTSTRAP_PIP_SPEC=... python3 -
Or less confusing, download the script and run sudo TLJH_BOOTSTRAP_PIP_SPEC=... python3 bootstrap.py