File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 6
6
# full list see the documentation:
7
7
# http://www.sphinx-doc.org/en/stable/config
8
8
9
+ from dask_jobqueue import __version__ as version
10
+
9
11
# -- Path setup --------------------------------------------------------------
10
12
11
13
# If extensions (or modules to document with autodoc) are in another directory,
24
26
copyright = u"2018, Anaconda, Inc. and contributors"
25
27
26
28
27
- from dask_jobqueue import __version__ as version
28
-
29
29
# The full version, including alpha/beta/rc tags.
30
30
# release = '0.1.0'
31
31
release = version
198
198
"issue" : ("https://github.com/dask/dask-jobqueue/issues/%s" , "GH#" ),
199
199
"pr" : ("https://github.com/dask/dask-jobqueue/pull/%s" , "GH#" ),
200
200
}
201
+
202
+
203
+ # Temporary work-around for spacing problem between parameter and parameter
204
+ # type in the doc, see https://github.com/numpy/numpydoc/issues/215. The bug
205
+ # has been fixed in sphinx (https://github.com/sphinx-doc/sphinx/pull/5976) but
206
+ # through a change in sphinx basic.css except rtd_theme does not use basic.css.
207
+ # In an ideal world, this would get fixed in this PR:
208
+ # https://github.com/readthedocs/sphinx_rtd_theme/pull/747/files
209
+ def setup (app ):
210
+ app .add_stylesheet ("basic.css" )
You can’t perform that action at this time.
0 commit comments