Jeremy Tuloup
Jeremy Tuloup
Normally the `stable` branch is reset after each release. Maybe it's related to the switch to releaser v2, which does not take into account this hook: https://github.com/voila-dashboards/voila/blob/3a57e7a3d1b9ddf31847fc856d4dfb581e7aebba/pyproject.toml#L184
Reopening so we should update that hook so the branch keeps being updated.
An alternative would be to remove that `stable` branch, since RTD should manage stable versions automatically?
From https://docs.readthedocs.io/en/stable/versions.html: > If your project has any tags or branches with a name following [semantic versioning](https://semver.org/), we also create a stable version tracking your most recent release. If you...
This should work in the latest Notebook 7 pre-release, using the `--LabServerApp.notebook_starts_kernel=False` option: 1. `pip install notebook --pre` 2. `jupyter notebook --LabServerApp.notebook_starts_kernel=False` https://github.com/jupyter/notebook/assets/591645/1c7ef194-62e2-4ec3-a39c-dbfd0ec3ffa7
FYI https://github.com/jupyterlab/jupyterlab/pull/17798 added support for this in JupyterLab, available in `jupyterlab>=4.5.0a4`: https://github.com/user-attachments/assets/d02eee9e-cd6e-46c0-99ac-0c7ad0fa9848 This is currently not supported in Jupyter Notebook, but on the radar for the 7.5.0 release.
Thanks @holzschu for reporting. > I also noticed that window.jupyterapp.commands.execute('notebook:toggle-autoclosing-brackets'); returns Unhandled Promise Rejection: Error: Command 'notebook:toggle-autoclosing-brackets' not registered. This seems to indicate RetroLab is missing the plugin that adds...
Looks like the command is being added here in JupyterLab: https://github.com/jupyterlab/jupyterlab/blob/7af65dd2fdfb443e13aaf1e03a7951ea98be7f1d/packages/notebook-extension/src/index.ts#L1339 But is guarded behind a `if (restorer)`, and there is no restorer in RetroLab. Probably this explains why the...
Looks like this should be fixed in https://github.com/jupyter/notebook/pull/6314  Which should be available in the next Notebook v7 pre-release.
@holzschu just curious, are you using RetroLab in Carnets? Or are you planning to switch to the Notebook v7 pre-release? For reference the first one is out and we'll continue...