Yevgeny Kazakov
Yevgeny Kazakov
Here is the output of `pip list` for the container based on `jupyterhub/jupyterhub:2.0.0rc3`: pip list for jupyterhub 2.0.0rc3 ``` $ pip list Package Version ------------------- --------- alembic 1.7.4 anyio 3.3.4...
> It's a regression the latest release of nbclassic. `pip install nbclassic==0.3.2` should fix it. Thanks, that did the job!
Looks like I have a related issue with the shared notebook, now with jupyterhub 2.0.2. Specifically, if I configure the shared service to use the classic notebook by setting: ```...
Would it make sense to keep (some of) the examples for idle-culler config *minimal*, i.e., without using roles and scopes, and simply setting `Admin: True`? Basically, the way it was...
Well, the Getting Started section is not meant to be the most secure one. It also gives an example of a dummy authenticator, which people should not really use. If...
In my opinion, the situation here is similar to the `admin_users` key. Currently there is a [note](https://jupyterhub.readthedocs.io/en/stable/getting-started/authenticators-users-basics.html#configure-admins-admin-users): ``` As of JupyterHub 2.0, the full permissions of admin_users should not be...
@minrk, many thanks for the explanation particularly for the link! I am still confused about this setting for `JUPYTERHUB_SINGLEUSER_APP`. If I set `JUPYTERHUB_SINGLEUSER_APP=notebook.notebookapp.NotebookApp` but manually change `/tree` to `/lab` in...
Do you access jupyterhub directly? If you use a reverse proxy, you can set the headers there. The following nginx settings work for us with iframes without problems: ``` location...
Works fine for me with jupyterlab 3.4.7 and ganymede 2.0.1
@matthewhorridge are you sure this piece of the code in `ProtegeTreeNodeRenderer` does not need a type cast: ``` String equivsRendering = node.getEquivalentObjects().stream() .map(this::getOwlObjectDisabmiguatedRendering) .map(this::prefixWithEquivalentSymbol) .collect(joining()); rendering += equivsRendering; ``` `node.getEquivalentObjects().stream()`...