Skip to content

Commit 48f0c3a

Browse files
Tom Augspurgerjorisvandenbossche
Tom Augspurger
authored andcommitted
DOC/BLD: Travis doc build notebook dependencies (pandas-dev#13493)
Added notebook deps for travis doc build.
1 parent 30d710f commit 48f0c3a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ci/requirements-2.7_DOC_BUILD.run

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
ipython
2+
ipykernel
23
sphinx
34
nbconvert
45
nbformat
6+
notebook
57
matplotlib
68
scipy
79
lxml

doc/make.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ def html():
193193
executed = execute_nb(nb, nb + '.executed', allow_errors=True,
194194
kernel_name=kernel_name)
195195
convert_nb(executed, nb.rstrip('.ipynb') + '.html')
196-
except (ImportError, IndexError):
196+
except (ImportError, IndexError) as e:
197+
print(e)
197198
print("Failed to convert %s" % nb)
198199

199200
if os.system('sphinx-build -P -b html -d build/doctrees '

0 commit comments

Comments
 (0)