Skip to content

Commit 670beb2

Browse files
committed
Add missing dependency to the API doc building workflow
1 parent 2d4c25c commit 670beb2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/api-docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,17 @@ jobs:
6767
run: echo PATH="$PATH:/github/home/.local/bin" >> "$GITHUB_ENV"
6868
- name: Install doc build requirements
6969
run: |
70+
# Install tomli so that pyproject.toml can be parsed
71+
pip install tomli
72+
7073
# Install package itself to install the samples datasets
71-
pip3 install .
74+
pip install .
7275
kh-download-datasets --force-overwrite
7376
kh-status
7477
7578
# Install the doc python requirements
7679
cd doc
77-
pip3 install -U -r requirements.txt
80+
pip install -U -r requirements.txt
7881
- name: Build Sphinx Documentation
7982
run: |
8083
cd doc

0 commit comments

Comments
 (0)