File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 37
37
'sphinx.ext.doctest' ,
38
38
'sphinx.ext.graphviz' ,
39
39
'sphinx.ext.intersphinx' ,
40
+ 'sphinx.ext.napoleon' ,
41
+ 'sphinx.ext.viewcode' ,
40
42
'sphinxcontrib.spelling' ,
41
43
# sphinx user community extensions
42
44
'hieroglyph' ,
130
132
nitpick_ignore = [
131
133
# This class appears in documented type-hints but is not documented in the
132
134
# Python docs so fails build.
133
- ('py:class' , 're.Pattern' )
135
+ ('py:class' , 're.Pattern' ),
136
+ ('py:class' , 'SubFuncContext' ),
137
+ ('py:exc' , 'ISO8601SyntaxError' ),
138
+ ('py:exc' , 'StrftimeSyntaxError' ),
134
139
]
135
140
136
141
# List of patterns, relative to source directory, that match files and
Original file line number Diff line number Diff line change
1
+ Exceptions
2
+ ==========
3
+
4
+ .. automodule :: cylc.flow.exceptions
5
+ :members:
6
+
7
+ .. automodule :: cylc.flow.parsec.exceptions
8
+ :members:
Original file line number Diff line number Diff line change 3
3
4
4
5
5
.. toctree ::
6
+ :maxdepth: 2
6
7
7
8
scan
8
9
zmq
10
+ exceptions
You can’t perform that action at this time.
0 commit comments