|
32 | 32 | import sys
|
33 | 33 |
|
34 | 34 | try:
|
35 |
| - import IPython |
36 |
| - from IPython.nbconvert.exporters import HTMLExporter |
37 |
| - if IPython.version_info[0] >= 3: # API changed with 3.0.0 |
38 |
| - from IPython import nbformat |
39 |
| - current_nbformat = nbformat.current_nbformat |
40 |
| - from IPython.kernel import kernelspec |
41 |
| - else: |
42 |
| - import IPython.nbformat.current as nbformat |
43 |
| - current_nbformat = 'json' |
44 |
| - kernelspec = None |
45 |
| - |
46 |
| - from IPython.config import Config |
| 35 | + from nbconvert.exporters import HTMLExporter |
| 36 | + import nbformat |
| 37 | + current_nbformat = nbformat.current_nbformat |
| 38 | + from jupyter_client import kernelspec |
| 39 | + from traitlets.config import Config |
47 | 40 | flag = True
|
| 41 | + ipy_modern = True |
48 | 42 | except ImportError:
|
49 |
| - flag = None |
| 43 | + try: |
| 44 | + import IPython |
| 45 | + from IPython.nbconvert.exporters import HTMLExporter |
| 46 | + if IPython.version_info[0] >= 3: # API changed with 3.0.0 |
| 47 | + from IPython import nbformat |
| 48 | + current_nbformat = nbformat.current_nbformat |
| 49 | + from IPython.kernel import kernelspec |
| 50 | + ipy_modern = True |
| 51 | + else: |
| 52 | + import IPython.nbformat.current as nbformat |
| 53 | + current_nbformat = 'json' |
| 54 | + kernelspec = None |
| 55 | + ipy_modern = False |
| 56 | + |
| 57 | + from IPython.config import Config |
| 58 | + flag = True |
| 59 | + except ImportError: |
| 60 | + flag = None |
| 61 | + ipy_modern = None |
50 | 62 |
|
51 | 63 | from nikola.plugin_categories import PageCompiler
|
52 | 64 | from nikola.utils import makedirs, req_missing, get_logger, STDERR_HANDLER
|
@@ -118,7 +130,7 @@ def create_post(self, path, **kw):
|
118 | 130 | # imported .ipynb file, guaranteed to start with "{" because it’s JSON.
|
119 | 131 | nb = nbformat.reads(content, current_nbformat)
|
120 | 132 | else:
|
121 |
| - if IPython.version_info[0] >= 3: |
| 133 | + if ipy_modern: |
122 | 134 | nb = nbformat.v4.new_notebook()
|
123 | 135 | nb["cells"] = [nbformat.v4.new_markdown_cell(content)]
|
124 | 136 | else:
|
@@ -151,7 +163,7 @@ def create_post(self, path, **kw):
|
151 | 163 | nb["metadata"]["nikola"] = metadata
|
152 | 164 |
|
153 | 165 | with io.open(path, "w+", encoding="utf8") as fd:
|
154 |
| - if IPython.version_info[0] >= 3: |
| 166 | + if ipy_modern: |
155 | 167 | nbformat.write(nb, fd, 4)
|
156 | 168 | else:
|
157 | 169 | nbformat.write(nb, fd, 'ipynb')
|
0 commit comments