-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update jupyter_notebook_config.py to fix bug introduced in notebook 5.7.0 #721
Conversation
Latest release of notebook (5.7.0) introduces bug when `c.NotebookApp.ip` is set to '*'. See jupyter/notebook#3946 for details.
notebook is still pinned to |
This still works with both versions right? So I guess this counts as future-proofing, which seems fine. |
Hi, thanks. Hmm @parente I missed the fact that it's pinned to 5.6; I'm seeing evidence that the base notebook is picking up 5.7 and I had to change my Docker file to downgrade to 5.6. @jakirkham It doesn't seem to work on 5.7, see issue linked above. Here's my Dockerfile
And the relevant output
I wondered if somehow |
@jharris1679, I meant the change you proposed in this PR. 😉 |
Let's We can update to Notebook 5.7 in another PR. Thanks @jharris1679 . |
Update jupyter_notebook_config.py to fix bug introduced in notebook 5.7.0 #721 jupyter/docker-stacks#721
Update jupyter_notebook_config.py to fix bug introduced in notebook 5.7.0 #721 jupyter/docker-stacks#721
Update jupyter_notebook_config.py to fix bug introduced in notebook 5.7.0 #721 jupyter/docker-stacks#721
The syntax for telling the notebook to listen on all addresses has changed, see jupyter/docker-stacks#721. Also, this change disables trash functionality which should help resolve https://jira.cybera.ca/browse/CAN-81. See jupyter/notebook#3130 for more details. Signed-off-by: Ian Allison <[email protected]>
Latest release of notebook (5.7.0) introduces bug when
c.NotebookApp.ip
is set to '*'. See jupyter/notebook#3946 for details.