|
16 | 16 | # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
17 | 17 | # ones. |
18 | 18 | extensions = [ |
19 | | - 'sphinx.ext.autosummary', |
20 | | - 'sphinx.ext.autodoc', |
| 19 | + "sphinx.ext.autosummary", |
| 20 | + "sphinx.ext.autodoc", |
21 | 21 | "myst_parser", |
22 | 22 | "sphinx.ext.extlinks", |
23 | 23 | "sphinx.ext.intersphinx", |
24 | 24 | "IPython.sphinxext.ipython_directive", |
25 | 25 | "IPython.sphinxext.ipython_console_highlighting", |
26 | | - 'nbsphinx', |
27 | | - 'jupyter_sphinx', |
28 | | - 'sphinx.ext.napoleon' |
| 26 | + "nbsphinx", |
| 27 | + "jupyter_sphinx", |
| 28 | + "sphinx.ext.napoleon", |
29 | 29 | ] |
30 | 30 |
|
31 | 31 | extlinks = { |
|
36 | 36 | # Add any paths that contain templates here, relative to this directory. |
37 | 37 | templates_path = ["_templates"] |
38 | 38 |
|
39 | | -html_static_path = ['_static'] |
| 39 | +html_static_path = ["_static"] |
40 | 40 |
|
41 | | -html_style = 'css/xsar.css' |
| 41 | +html_style = "css/xsar.css" |
42 | 42 |
|
43 | 43 | # List of patterns, relative to source directory, that match files and |
44 | 44 | # directories to ignore when looking for source files. |
|
84 | 84 | "dask": ("https://docs.dask.org/en/latest", None), |
85 | 85 | "xarray": ("https://docs.xarray.dev/en/latest/", None), |
86 | 86 | "rasterio": ("https://rasterio.readthedocs.io/en/latest/", None), |
87 | | - "datatree": ("https://xarray-datatree.readthedocs.io/en/latest/", None) |
| 87 | + "datatree": ("https://xarray-datatree.readthedocs.io/en/latest/", None), |
88 | 88 | } |
89 | 89 |
|
90 | 90 | html_theme_options = { |
91 | | - 'navigation_depth': 4, # FIXME: doesn't work as expeted: should expand side menu |
92 | | - 'collapse_navigation': False # FIXME: same as above |
| 91 | + "navigation_depth": 4, # FIXME: doesn't work as expeted: should expand side menu |
| 92 | + "collapse_navigation": False, # FIXME: same as above |
93 | 93 | } |
94 | 94 |
|
95 | 95 | # If true, links to the reST sources are added to the pages. |
96 | 96 | html_show_sourcelink = False |
97 | 97 |
|
98 | 98 | nbsphinx_allow_errors = False |
99 | 99 |
|
100 | | -nbsphinx_execute = 'always' |
| 100 | +nbsphinx_execute = "always" |
101 | 101 |
|
102 | 102 | nbsphinx_timeout = 300 |
103 | 103 |
|
104 | | -today_fmt = '%b %d %Y at %H:%M' |
| 104 | +today_fmt = "%b %d %Y at %H:%M" |
0 commit comments