Skip to content

Commit 5e26201

Browse files
committed
Updated files with 'repo_helper'.
1 parent e7855ea commit 5e26201

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ sphinx:
1313
formats: all
1414

1515
python:
16-
version: 3.6
16+
version: 3.8
1717
install:
1818
- requirements: requirements.txt
1919
- requirements: doc-source/requirements.txt

doc-source/conf.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,24 @@
104104
texinfo_documents = [('index', slug, project, author, slug, project, 'Miscellaneous')]
105105

106106

107+
autodoc_default_options = {
108+
'members': None, # Include all members (methods).
109+
'special-members': None,
110+
"autosummary": None,
111+
'exclude-members': ','.join([ # Exclude "standard" methods.
112+
"__dict__",
113+
"__dir__",
114+
"__weakref__",
115+
"__module__",
116+
"__annotations__",
117+
"__orig_bases__",
118+
"__parameters__",
119+
"__subclasshook__",
120+
"__init_subclass__",
121+
])
122+
}
123+
124+
107125
# Extensions to theme docs
108126
def setup(app):
109127
from sphinx.domains.python import PyField

0 commit comments

Comments
 (0)