32
32
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
33
33
# ones.
34
34
extensions = [
35
- ' myst_parser' ,
36
- ' sphinx.ext.autodoc' ,
37
- ' sphinx.ext.intersphinx' ,
38
- ' sphinx.ext.napoleon' ,
39
- ' sphinxcontrib_github_alt' ,
35
+ " myst_parser" ,
36
+ " sphinx.ext.autodoc" ,
37
+ " sphinx.ext.intersphinx" ,
38
+ " sphinx.ext.napoleon" ,
39
+ " sphinxcontrib_github_alt" ,
40
40
"sphinx_autodoc_typehints" ,
41
41
]
42
42
@@ -60,23 +60,23 @@ def filter(self, record: pylogging.LogRecord) -> bool:
60
60
myst_enable_extensions = ["html_image" ]
61
61
62
62
# Add any paths that contain templates here, relative to this directory.
63
- templates_path = [' _templates' ]
63
+ templates_path = [" _templates" ]
64
64
65
65
# The suffix(es) of source filenames.
66
66
# You can specify multiple suffix as a list of string:
67
67
# source_suffix = ['.rst', '.md']
68
- source_suffix = ' .rst'
68
+ source_suffix = " .rst"
69
69
70
70
# The encoding of source files.
71
71
# source_encoding = 'utf-8-sig'
72
72
73
73
# The master toctree document.
74
- master_doc = ' index'
74
+ master_doc = " index"
75
75
76
76
# General information about the project.
77
- project = ' jupyter_client'
78
- copyright = ' 2015, Jupyter Development Team'
79
- author = ' Jupyter Development Team'
77
+ project = " jupyter_client"
78
+ copyright = " 2015, Jupyter Development Team"
79
+ author = " Jupyter Development Team"
80
80
81
81
github_project_url = "https://github.com/jupyter/jupyter_client"
82
82
@@ -86,14 +86,14 @@ def filter(self, record: pylogging.LogRecord) -> bool:
86
86
#
87
87
version_ns : dict = {}
88
88
here = os .path .dirname (__file__ )
89
- version_py = os .path .join (here , os .pardir , ' jupyter_client' , ' _version.py' )
89
+ version_py = os .path .join (here , os .pardir , " jupyter_client" , " _version.py" )
90
90
with open (version_py ) as f :
91
- exec (compile (f .read (), version_py , ' exec' ), version_ns ) # noqa
91
+ exec (compile (f .read (), version_py , " exec" ), version_ns ) # noqa
92
92
93
93
# The short X.Y version.
94
- version = ' %i.%i' % version_ns [' version_info' ][:2 ]
94
+ version = " %i.%i" % version_ns [" version_info" ][:2 ]
95
95
# The full version, including alpha/beta/rc tags.
96
- release = version_ns [' __version__' ]
96
+ release = version_ns [" __version__" ]
97
97
98
98
# The language for content autogenerated by Sphinx. Refer to documentation
99
99
# for a list of supported languages.
@@ -110,7 +110,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
110
110
111
111
# List of patterns, relative to source directory, that match files and
112
112
# directories to ignore when looking for source files.
113
- exclude_patterns = [' _build' ]
113
+ exclude_patterns = [" _build" ]
114
114
115
115
# The reST default role (used for this markup: `text`) to use for all
116
116
# documents.
@@ -128,7 +128,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
128
128
# show_authors = False
129
129
130
130
# The name of the Pygments (syntax highlighting) style to use.
131
- pygments_style = ' sphinx'
131
+ pygments_style = " sphinx"
132
132
133
133
# A list of ignored prefixes for module index sorting.
134
134
# modindex_common_prefix = []
@@ -144,12 +144,12 @@ def filter(self, record: pylogging.LogRecord) -> bool:
144
144
145
145
# The theme to use for HTML and HTML Help pages. See the documentation for
146
146
# a list of builtin themes.
147
- html_theme = ' pydata_sphinx_theme'
147
+ html_theme = " pydata_sphinx_theme"
148
148
149
149
# Theme options are theme-specific and customize the look and feel of a theme
150
150
# further. For a list of options available for each theme, see the
151
151
# documentation.
152
- # html_theme_options = {}
152
+ html_theme_options = {"navigation_with_keys" : False }
153
153
154
154
# Add any paths that contain custom themes here, relative to this directory.
155
155
# html_theme_path = []
@@ -236,7 +236,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
236
236
# html_search_scorer = 'scorer.js'
237
237
238
238
# Output file base name for HTML help builder.
239
- htmlhelp_basename = ' jupyter_clientdoc'
239
+ htmlhelp_basename = " jupyter_clientdoc"
240
240
241
241
# -- Options for LaTeX output ---------------------------------------------
242
242
@@ -257,10 +257,10 @@ def filter(self, record: pylogging.LogRecord) -> bool:
257
257
latex_documents = [
258
258
(
259
259
master_doc ,
260
- ' jupyter_client.tex' ,
261
- ' jupyter\\ _client Documentation' ,
262
- ' Jupyter Development Team' ,
263
- ' manual' ,
260
+ " jupyter_client.tex" ,
261
+ " jupyter\\ _client Documentation" ,
262
+ " Jupyter Development Team" ,
263
+ " manual" ,
264
264
),
265
265
]
266
266
@@ -289,7 +289,7 @@ def filter(self, record: pylogging.LogRecord) -> bool:
289
289
290
290
# One entry per manual page. List of tuples
291
291
# (source start file, name, description, authors, manual section).
292
- man_pages = [(master_doc , ' jupyter_client' , ' jupyter_client Documentation' , [author ], 1 )]
292
+ man_pages = [(master_doc , " jupyter_client" , " jupyter_client Documentation" , [author ], 1 )]
293
293
294
294
# If true, show URL addresses after external links.
295
295
# man_show_urls = False
@@ -303,12 +303,12 @@ def filter(self, record: pylogging.LogRecord) -> bool:
303
303
texinfo_documents = [
304
304
(
305
305
master_doc ,
306
- ' jupyter_client' ,
307
- ' jupyter_client Documentation' ,
306
+ " jupyter_client" ,
307
+ " jupyter_client Documentation" ,
308
308
author ,
309
- ' jupyter_client' ,
310
- ' One line description of project.' ,
311
- ' Miscellaneous' ,
309
+ " jupyter_client" ,
310
+ " One line description of project." ,
311
+ " Miscellaneous" ,
312
312
),
313
313
]
314
314
@@ -326,10 +326,10 @@ def filter(self, record: pylogging.LogRecord) -> bool:
326
326
327
327
328
328
# Example configuration for intersphinx: refer to the Python standard library.
329
- intersphinx_mapping = {' ipython' : (' http://ipython.readthedocs.io/en/stable/' , None )}
329
+ intersphinx_mapping = {" ipython" : (" http://ipython.readthedocs.io/en/stable/" , None )}
330
330
331
331
332
332
def setup (app : object ) -> None :
333
333
HERE = osp .abspath (osp .dirname (__file__ ))
334
- dest = osp .join (HERE , ' changelog.md' )
335
- shutil .copy (osp .join (HERE , '..' , ' CHANGELOG.md' ), dest )
334
+ dest = osp .join (HERE , " changelog.md" )
335
+ shutil .copy (osp .join (HERE , ".." , " CHANGELOG.md" ), dest )
0 commit comments