File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 58
58
run : echo PATH="$PATH:/github/home/.local/bin" >> "$GITHUB_ENV"
59
59
- name : Install doc build requirements
60
60
run : |
61
+ # Build the doc inside a virtual environment to make consistent use of dependencies
62
+ python -m venv .venvdocs
63
+ . .venvdocs/bin/activate
64
+
61
65
# Install package itself to install the samples datasets
62
66
pip3 install .
63
67
kh-download-datasets --force-overwrite --version ${{ inputs.khiops-samples-revision || env.DEFAULT_KHIOPS_SAMPLES_REVISION }}
69
73
# Clone the Khiops Python tutorial repository while building the documentation
70
74
- name : Build Sphinx Documentation
71
75
run : |
76
+ . .venvdocs/bin/activate
72
77
cd doc
73
78
./create-doc -t -d -g \
74
79
${{ inputs.khiops-python-tutorial-revision || env.DEFAULT_KHIOPS_PYTHON_TUTORIAL_REVISION }}
You can’t perform that action at this time.
0 commit comments