Skip to content

Commit 3370d2a

Browse files
committed
COMP: pandoc version for docs build
To address: > itkpython/lib/python3.9/site-packages/nbsphinx/__init__.py:1058: RuntimeWarning: You are using an unsupported version of pandoc (2.9.2.1).
1 parent 0b4ca64 commit 3370d2a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
matrix:
133133
os: [ubuntu-22.04, windows-2022, macos-12]
134134
include:
135-
- os: ubuntu-20.04
135+
- os: ubuntu-22.04
136136
c-compiler: "gcc"
137137
cxx-compiler: "g++"
138138
cmake-build-type: "MinSizeRel"
@@ -284,7 +284,9 @@ jobs:
284284
sudo apt-get update
285285
sudo apt-get install gnuplot dvipng
286286
sudo apt-get install texlive-full
287-
sudo apt-get install pandoc
287+
sudo apt-get install curl
288+
curl -LO https://github.com/jgm/pandoc/releases/download/3.1.6/pandoc-3.1.6-1-amd64.deb
289+
sudo apt-get install ./pandoc-3.1.6-1-amd64.deb
288290
sudo apt-get install imagemagick
289291
290292
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)