Skip to content
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

Fix bug on nbconvert: No module named 'notebook.services' #1663

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Unreleased (aka. GitHub master)

- In *Collapsible Headings*, get the notebook version from `sys_info` if possible, resolving an incompatibility with *notebook* versions 6.5.x [#1617](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1617).
- Add short execution threshold for ExecutionTime plugin. Excution time will not show on cells that executed faster than the given threshold [#1336](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1336).
- Fix bug on nbconvert: No module named 'notebook.services' when running `jupyter nbconvert --execute --allow-errors --to pdf myfile.ipynb` [#1663](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1663)

0.7.0
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json
import os

from notebook.services.config import ConfigManager
from jupyter_server.services.config import ConfigManager

from jupyter_contrib_nbextensions import __file__ as contrib_init

Expand Down