File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1212
1313 steps :
1414 - uses : actions/checkout@v1
15- # Standard drop-in approach that should work for most people.
15+ # https://github.com/marketplace/actions/setup-python
16+ # ^-- This gives info on matrix testing.
17+ - name : Install Python
18+ uses : actions/setup-python@v1
19+ with :
20+ python-version : 3.8
21+ - name : Install dependencies
22+ run : |
23+ pip install -r requirements-docs.txt
24+ pip install -e .
1625 - uses : ammaraskar/sphinx-action@master
1726 with :
1827 docs-folder : " docs/"
Original file line number Diff line number Diff line change 4747 "sphinx.ext.autosummary" ,
4848 "numpydoc" ,
4949]
50- numpydoc_show_class_members = False # avoids producing two summaries for each class with numpydoc
50+ numpydoc_attributes_as_param_list = False
5151
5252# Add any paths that contain templates here, relative to this directory.
5353templates_path = ["_templates" ]
117117# so a file named "default.css" will overwrite the builtin "default.css".
118118html_static_path = ["_static" ]
119119
120+ html_css_files = [
121+ "css/logo.css" ,
122+ ]
123+
120124# Custom sidebar templates, must be a dictionary that maps document names
121125# to template names.
122126#
You can’t perform that action at this time.
0 commit comments