Skip to content

Commit 92709b8

Browse files
committed
ENH: dvipng
1 parent d1c8f0a commit 92709b8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
language: python
44
dist: xenial
55
sudo: false
6-
matrix:
6+
addons:
7+
apt:
8+
packages:
9+
- dvipng
10+
matrix:
711
include:
812
- python: 3.7
913
env: SPHINX_SPEC="==1.6.5" SPHINXOPTS=""

numpydoc/tests/test_full.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from io import StringIO
21
import os.path as op
32
import shutil
43

@@ -27,7 +26,7 @@ def ignore(src, names):
2726
# https://github.com/sphinx-doc/sphinx/issues/5038
2827
with docutils_namespace():
2928
app = Sphinx(src_dir, conf_dir, out_dir, toctrees_dir,
30-
buildername='html', status=StringIO())
29+
buildername='html')
3130
# need to build within the context manager
3231
# for automodule and backrefs to work
3332
app.build(False, [])

0 commit comments

Comments
 (0)