Jeremy Tuloup

Results 1051 comments of Jeremy Tuloup

The docs could have a new section called "Authoring JupyterLab Extensions", as an entrypoint for developers who want to create a new extension: - https://jupyterlab.readthedocs.io/en/stable/developer/extension_points.html - https://jupyterlab.readthedocs.io/en/stable/developer/extension_dev.html - For an...

@mafudge do you have an example repo where this issue is happening?

Thanks @kevin-bates for the quick reply! The main motivation for now would be to differentiate between the kernels started from a notebook frontend using the default handler from the notebook...

Indeed. The prefix would be reflected in the `id` of the response to `GET /api/kernels`: ```json [ { "id": "10f619b3-5d39-49a6-bed2-5218a32ce774", "name": "python3", "last_activity": "2020-05-28T13:18:14.175879Z", "execution_state": "idle", "connections": 0 }, {...

This was mostly an answer to that question: > are you expecting things like /api/kernels (to get a list of running kernels) to return different results depending on which handler...

> By creating their own instance of MappingKernelManager and assuming Voila doesn't go through (or use) sessions to manage kernels There is some exploratory work for using a separate kernel...

Thanks @choldgraf for this proposal :+1: This sounds like a good idea and I would be happy to be part of that group. Probably a couple of other lab team...

This could also be useful for packages using something else than `test` as `extras_require`.

I did a quick test with the "Generate Changelog" workflow with https://github.com/jupyter-server/jupyter_releaser/pull/251 and after updating refs to point to my fork: https://github.com/jupyter-server/jupyter_releaser/compare/main...jtpio:tmp, targeting `jupyterlab/jupyterlab`. The logs of the run in...

@katsar0v how about something like this (using Python 3.7+): ![dashboard-refresh](https://user-images.githubusercontent.com/591645/66867266-39c9b300-ef9b-11e9-996f-e6565fa62d49.gif) ```python import asyncio %matplotlib widget import ipympl import matplotlib.pyplot as plt import pandas as pd import numpy as np import...