Skip to content

Commit 4c939a7

Browse files
committed
fix: pandoc requires texlive to render latex in notebook
The new notebook has some latex insets, and I believe pandoc is generating empty environments for them, which translate into warnings assumed as errors. It is the only difference I could think of between the environment in CircleCI and the testing environment I've created on my workstation. Resolves: #414.
1 parent 6c5292c commit 4c939a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ jobs:
370370
name: Install Graphviz & pandoc
371371
command: |
372372
sudo apt-get update -y
373-
sudo apt-get install -y --no-install-recommends graphviz pandoc
373+
sudo apt-get install -y --no-install-recommends graphviz pandoc texlive
374374
- run:
375375
name: Install deps
376376
command: |
@@ -384,7 +384,7 @@ jobs:
384384
source /tmp/venv/bin/activate
385385
python -m hatch version | tail -n1 | xargs
386386
BRANCH=$( echo $CIRCLE_BRANCH | sed 's+/+_+g' )
387-
make -C docs SPHINXOPTS="-W" BUILDDIR="$HOME/docs" OUTDIR=${CIRCLE_TAG:-$BRANCH} html
387+
make -C docs SPHINXOPTS="-W -v" BUILDDIR="$HOME/docs" OUTDIR=${CIRCLE_TAG:-$BRANCH} html
388388
- store_artifacts:
389389
path: ~/docs/
390390

0 commit comments

Comments
 (0)