Skip to content

Commit 00ebeab

Browse files
committedNov 21, 2015
Merge pull request #2178 from getnikola/jupyter
Fix #1938 -- Jupyter compatibility
2 parents cf14ca9 + 87cff84 commit 00ebeab

File tree

3 files changed

+30
-16
lines changed

3 files changed

+30
-16
lines changed
 

‎CHANGES.txt

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ New in master
44
Features
55
--------
66

7+
* Use Jupyter instead of IPython shims (Issue #1938)
78
* Automatically open gallery images colorbox based on URL fragment (Issue #2146)
89

910
Bugfixes

‎nikola/plugins/compile/ipynb.py

+27-15
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,33 @@
3232
import sys
3333

3434
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
4740
flag = True
41+
ipy_modern = True
4842
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
5062

5163
from nikola.plugin_categories import PageCompiler
5264
from nikola.utils import makedirs, req_missing, get_logger, STDERR_HANDLER
@@ -118,7 +130,7 @@ def create_post(self, path, **kw):
118130
# imported .ipynb file, guaranteed to start with "{" because it’s JSON.
119131
nb = nbformat.reads(content, current_nbformat)
120132
else:
121-
if IPython.version_info[0] >= 3:
133+
if ipy_modern:
122134
nb = nbformat.v4.new_notebook()
123135
nb["cells"] = [nbformat.v4.new_markdown_cell(content)]
124136
else:
@@ -151,7 +163,7 @@ def create_post(self, path, **kw):
151163
nb["metadata"]["nikola"] = metadata
152164

153165
with io.open(path, "w+", encoding="utf8") as fd:
154-
if IPython.version_info[0] >= 3:
166+
if ipy_modern:
155167
nbformat.write(nb, fd, 4)
156168
else:
157169
nbformat.write(nb, fd, 'ipynb')

‎requirements-extras.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ pygal>=2.0.0
77
typogrify>=2.0.4
88
phpserialize>=1.3
99
webassets>=0.10.1
10-
ipython[notebook]>=2.0.0
10+
notebook>=4.0.0
11+
ipykernel>=4.0.0
1112
ghp-import2>=1.0.0
1213
ws4py==0.3.4
1314
watchdog==0.8.3

0 commit comments

Comments
 (0)
Please sign in to comment.