-
-
Notifications
You must be signed in to change notification settings - Fork 370
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
6.0.0rc1 missing dependency on ipyparallel breaks nbconvert #694
Comments
Can confirm this on Windows as well. It comes down to try:
# available since ipyparallel 5.1.1
from ipyparallel.serialize import codeutil
except ImportError:
# Deprecated since ipykernel 4.3.1
from ipykernel import codeutil and in 6.0.0rc1: # This registers a hook when it's imported
from ipyparallel.serialize import codeutil So with this depreciation the |
It also break using ipykernel as a kernel in JupyterLab, so this is not contained to use with nbconvert. |
It seems like ipykernel is dependent on ipyparallel, but it is not listed as a package dependency.
Running on MacOS 10.14.6
Python 3.8.5
(please let me know if more information is needed)
nbconvert fails with:
The output of
pip freeze
is:The text was updated successfully, but these errors were encountered: