1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Adam Cecile <acecile@le-vert.net>
Date: Sun, 10 Jan 2021 12:04:56 +0100
Subject: Disable unavailable Sphinx inline-tabs module
---
docs/conf.py | 2 +-
setup.cfg | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 20ce5f2..404e9c0 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -38,7 +38,7 @@ extensions = [
"sphinx.ext.viewcode",
"sphinx.ext.autosummary",
"sphinx_autodoc_typehints",
- "sphinx_inline_tabs",
+# "sphinx_inline_tabs",
"sphinx_copybutton",
]
diff --git a/setup.cfg b/setup.cfg
index 46cb47e..8e0f77e 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -55,7 +55,7 @@ docs =
sphinx-autobuild
sphinx-autodoc-typehints
sphinx-copybutton
- sphinx-inline-tabs
+ #sphinx-inline-tabs
lxml =
lxml>=4.4.1
soap =
|