Skip to content

Commit dafed43

Browse files
committed
Attempt #3 github actions build
1 parent 02c6c35 commit dafed43

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

.github/workflows/docs.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ jobs:
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/"

docs/source/conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
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.
5353
templates_path = ["_templates"]
@@ -117,6 +117,10 @@
117117
# so a file named "default.css" will overwrite the builtin "default.css".
118118
html_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
#

0 commit comments

Comments
 (0)