File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,17 @@ jobs:
7373 # as of 29/10/23. Ubuntu 22.04 which is used for ubuntu-latest only has an
7474 # old pandoc version (2.9.). We will hence install the latest version manually.
7575 # previou: sudo apt-get install -y pandoc
76- wget https://github.com/jgm/pandoc/releases/download/3.1.9/pandoc-3.1.9-1-amd64.deb
77- sudo dpkg -i pandoc-3.1.9-1-amd64.deb
78- rm pandoc-3.1.9-1-amd64.deb
79- pip install torch --extra-index-url https://download.pytorch.org/whl/cpu
80- pip install '.[docs]'
76+ # NOTE(stes): Updated to latest version as of 17/04/2025, v3.6.4.
77+ wget https://github.com/jgm/pandoc/releases/download/3.6.4/pandoc-3.6.4-1-amd64.deb
78+ sudo dpkg -i pandoc-3.6.4-1-amd64.deb
79+ rm pandoc-3.6.4-1-amd64.deb
8180 pip install -r docs/requirements.txt
8281
82+ - name : Check software versions
83+ run : |
84+ sphinx --version
85+ pandoc --version
86+
8387 - name : Build docs
8488 run : |
8589 ls docs/source/cebra-figures
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ RUN apt-get update && apt-get install -y \
66 pandoc \
77 && rm -rf /var/lib/apt/lists/*
88
9- RUN pip install cebra[docs]
10- RUN pip uninstall -y cebra
11-
129COPY docs/requirements.txt .
1310RUN pip install -r requirements.txt
1411
1512COPY setup.cfg .
1613COPY pyproject.toml .
1714COPY cebra/ .
15+
16+ RUN pip install cebra[docs]
17+ RUN pip uninstall -y cebra
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ integrations =
6464 plotly
6565 seaborn
6666docs =
67- sphinx ==7.4.7
67+ sphinx
6868 sphinx-gallery
6969 docutils
7070 pydata-sphinx-theme
You can’t perform that action at this time.
0 commit comments