Skip to content

Commit 8c55e23

Browse files
committed
doc: install iplotx when building documentation
1 parent 7bd368c commit 8c55e23

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/mkdoc.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ if [ ! -d ".venv" ]; then
5454
echo "Creating virtualenv..."
5555
${PYTHON:-python3} -m venv .venv
5656

57-
# Install sphinx, matplotlib, pandas, scipy, wheel and pydoctor into the venv.
57+
# Install documentation dependencies into the venv.
5858
# doc2dash is optional; it will be installed when -d is given
59-
.venv/bin/pip install -q -U pip wheel sphinx==7.4.7 matplotlib pandas scipy pydoctor sphinx-rtd-theme
59+
.venv/bin/pip install -q -U pip wheel sphinx==7.4.7 matplotlib pandas scipy pydoctor sphinx-rtd-theme iplotx
6060
else
6161
# Upgrade pip in the virtualenv
6262
echo "Upgrading pip in virtualenv..."
6363
.venv/bin/pip install -q -U pip wheel
6464
fi
6565

66-
# Make sure that Sphinx, PyDoctor (and maybe doc2dash) are up-to-date in the virtualenv
66+
# Make sure that documentation dependencies are up-to-date in the virtualenv
6767
echo "Making sure that all dependencies are up-to-date..."
68-
.venv/bin/pip install -q -U sphinx==7.4.7 pydoctor sphinx-gallery sphinxcontrib-jquery sphinx-rtd-theme
68+
.venv/bin/pip install -q -U sphinx==7.4.7 pydoctor sphinx-gallery sphinxcontrib-jquery sphinx-rtd-theme iplotx
6969
if [ x$DOC2DASH = x1 ]; then
7070
.venv/bin/pip install -U doc2dash
7171
fi

0 commit comments

Comments
 (0)