Skip to content

Commit 2a25157

Browse files
committed
chore: add some progress info to scripts/mkdoc.sh
1 parent b50dc6f commit 2a25157

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/mkdoc.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,20 @@ cd ${ROOT_FOLDER}
4747

4848
# Create a virtual environment
4949
if [ ! -d ".venv" ]; then
50+
echo "Creating virtualenv..."
5051
${PYTHON:-python3} -m venv .venv
5152

5253
# Install sphinx, matplotlib, pandas, scipy, wheel and pydoctor into the venv.
5354
# doc2dash is optional; it will be installed when -d is given
5455
.venv/bin/pip install -q -U pip wheel sphinx==7.4.7 matplotlib pandas scipy pydoctor sphinx-rtd-theme
5556
else
5657
# Upgrade pip in the virtualenv
58+
echo "Upgrading pip in virtualenv..."
5759
.venv/bin/pip install -q -U pip wheel
5860
fi
5961

6062
# Make sure that Sphinx, PyDoctor (and maybe doc2dash) are up-to-date in the virtualenv
63+
echo "Making sure that all dependencies are up-to-date..."
6164
.venv/bin/pip install -q -U sphinx==7.4.7 pydoctor sphinx-gallery sphinxcontrib-jquery sphinx-rtd-theme
6265
if [ x$DOC2DASH = x1 ]; then
6366
.venv/bin/pip install -U doc2dash

0 commit comments

Comments
 (0)