We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e7311e commit 7ef77cbCopy full SHA for 7ef77cb
1 file changed
.github/workflows/api-docs.yml
@@ -54,6 +54,10 @@ jobs:
54
run: echo PATH="$PATH:/github/home/.local/bin" >> "$GITHUB_ENV"
55
- name: Install doc build requirements
56
run: |
57
+ # Build the doc inside a virtual environment to make consistent use of dependencies
58
+ python -m venv .venvdocs
59
+ . .venvdocs/bin/activate
60
+
61
# Install package itself to install the samples datasets
62
pip3 install .
63
kh-download-datasets --force-overwrite
@@ -65,6 +69,7 @@ jobs:
65
69
# Clone the Khiops Python tutorial repository while building the documentation
66
70
- name: Build Sphinx Documentation
67
71
72
68
73
cd doc
74
./create-doc -t -d -g \
75
${{ inputs.khiops-python-tutorial-revision || env.DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION }}
0 commit comments