Jeremy Tuloup
Jeremy Tuloup
The [notebook](https://github.com/jupyterlab/debugger/blob/master/src/handlers/notebook.ts) and [console](https://github.com/jupyterlab/debugger/blob/master/src/handlers/console.ts) handlers share similar code when it comes to handling cells and editors: https://github.com/jupyterlab/debugger/blob/d3f43e514d41b10cc02614ff5ac5db7640339ae5/src/handlers/notebook.ts#L69-L84 We could investigate how to make them more generic, for example by implementing...
For now the tests only run on Ubuntu. We should add macOS (and in the future Windows).
At the moment we wrap the debug requests in `try catch` blocks, and log the errors to the console: https://github.com/jupyterlab/debugger/blob/80fb3d738c3405a3c65303d4015da2148925d810/src/service.ts#L109-L118 Instead we should handle the error properly, for example by...
We should check what it happening when the `stepOver` (`next`) command is being used. In the screencast below we would expect to advance to the line 2, then 3 and...
It looks like only the source distribution is uploaded to PyPI: https://pypi.org/project/gpxpy/1.4.2/#files  It would be great to have a Python wheel uploaded there too. This will make it possible...
### Proposed change Currently TLJH pins to `jupyterhub==1.*` here: https://github.com/jupyterhub/the-littlest-jupyterhub/blob/121b4c7d8d7ec068e07e55f24ea75ce6fa0ca462/tljh/installer.py#L124 This indicates that TLJH might not be compatible with JupyterHub 2.0. Since JupyterHub 2.0 has been out for a while,...
### Bug description #### Expected behaviour It should be possible to add admin users identified as numbers via `tljh-config`. #### Actual behaviour Doing so yields an error (see traceback below)...
At the moment the [docs](http://tljh.jupyter.org/en/latest/topic/tljh-config.html#set-unset-a-configuration-property) mention: > If what you want is only to change the property’s value, you should use set and overwrite it with the desired value. However...
TLJH's focus on simplicity and good defaults is great, which makes it very tempting to use it for other cases than it was designed for! One of these use cases...
Fixes #2370  This mimics the same approach as for the notebooks for now, but it might be possible to have both the consoles and notebooks share more logic.