Closed
Description
Using the latest 6.4.0
version of ipykernel
, it looks like the debugger is always disabled.
This was first noticed on Binder using this gist: https://gist.github.com/jtpio/6ce26381703355e0ef1da4af742b7f72
But can be reproduced locally:
mamba create -n tmp python -y
conda activate tmp
# install the latest versions
python -m pip install -U ipykernel debugpy jupyterlab
# start JupyterLab
jupyter lab
The spec seems to be installed with debugger: false
on disk:
$ cat ${CONDA_PREFIX}/share/jupyter/kernels/python3/kernel.json
{
"argv": [
"python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3 (ipykernel)",
"language": "python",
"metadata": {
"debugger": false
}
}
And the kernelspecs return debugger: false
for ipykernel
at startup:
Dependencies:
$ pip list | grep -E "debugpy|ipykernel"
debugpy 1.4.1
ipykernel 6.4.0
Metadata
Metadata
Assignees
Labels
No labels