File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# History
2
2
3
+ ## 0.5.2 (2023-07-28)
4
+
5
+ - Fixes compatibility with Notebook 7. ([ PR #122 ] ( https://github.com/drivendataorg/nbautoexport/pull/122 ) )
6
+
3
7
## 0.5.1 (2023-07-18)
4
8
5
9
- Add support for ` pydantic>=2.0.0 ` ([ PR #119 ] ( https://github.com/drivendataorg/nbautoexport/pull/119 ) )
Original file line number Diff line number Diff line change 3
3
4
4
from nbconvert .nbconvertapp import NbConvertApp
5
5
from nbconvert .postprocessors .base import PostProcessorBase
6
- from notebook .services .contents .filemanager import FileContentsManager
6
+ from jupyter_server .services .contents .filemanager import FileContentsManager
7
7
8
8
from nbautoexport .clean import FORMATS_WITH_IMAGE_DIR
9
9
from nbautoexport .sentinel import (
Original file line number Diff line number Diff line change 5
5
import sys
6
6
import textwrap
7
7
8
- from notebook .services .contents .filemanager import FileContentsManager
8
+ from jupyter_server .services .contents .filemanager import FileContentsManager
9
9
from traitlets .config .loader import Config
10
10
11
11
from nbautoexport import __version__
Original file line number Diff line number Diff line change 3
3
import shutil
4
4
5
5
import nbformat
6
- from notebook .services .contents .filemanager import FileContentsManager
6
+ from jupyter_server .services .contents .filemanager import FileContentsManager
7
7
import pytest
8
8
from traitlets .config import Config
9
9
You can’t perform that action at this time.
0 commit comments