File tree 3 files changed +4
-3
lines changed 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,15 @@ jobs:
22
22
run : |
23
23
export DEBIAN_FRONTEND=noninteractive
24
24
sudo apt-get update
25
- sudo apt install -y git python3-venv make
25
+ sudo apt install -y git python3-venv make python3-setuptools
26
26
echo `python3 --version`
27
27
python3 -m venv venv
28
28
source venv/bin/activate
29
29
pip install --upgrade pip setuptools
30
30
id : build
31
31
- name : Build the docset
32
32
run : |
33
+ source ../venv/bin/activate
33
34
cd docs
34
35
pip install -r requirements.txt
35
36
make html
Original file line number Diff line number Diff line change 41
41
# Add any Sphinx extension module names here, as strings. They can be
42
42
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
43
43
# ones.
44
- extensions = ["sphinx.ext.napoleon" , "sphinx.ext.autodoc" , 'sphinx_panels' ]
45
- panels_add_bootstrap_css = False
44
+ extensions = ["sphinx.ext.napoleon" , "sphinx.ext.autodoc" , "sphinx_panels" ]
46
45
47
46
# Add any paths that contain templates here, relative to this directory.
48
47
templates_path = ["_templates" ]
66
65
# so a file named "default.css" will overwrite the builtin "default.css".
67
66
68
67
html_static_path = ["_static" ]
68
+ html_css_files = [] # avoid undefined errors
69
69
panels_add_fontawesome_latex = True
70
70
71
71
html_theme_options = {
You can’t perform that action at this time.
0 commit comments