summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-03-05 11:12:28 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-03-05 11:12:28 -0500
commit265fb0eda039711e749bec09b512b91e9ce56627 (patch)
tree795bedec15ef30e6b58cfaca498255005e39efdb /docs
parentc88c4e8a443e34f739547aeb76f4d9e752c0c31c (diff)
downloadpython-setuptools-git-265fb0eda039711e749bec09b512b91e9ce56627.tar.gz
Extend extensions later in the file. Fixes flake8 failure and isolates the (sole) change from other concerns.
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 9082fb1d..581d8d5e 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,4 +1,4 @@
-extensions = ['sphinx.ext.autodoc', 'jaraco.packaging.sphinx', 'rst.linker', 'sphinx_inline_tabs']
+extensions = ['sphinx.ext.autodoc', 'jaraco.packaging.sphinx', 'rst.linker']
master_doc = "index"
@@ -93,3 +93,6 @@ default_role = 'any'
html_theme = 'alabaster'
templates_path = ['_templates']
html_sidebars = {'index': ['tidelift-sidebar.html']}
+
+# Add support for inline tabs
+extensions += ['sphinx_inline_tabs']