1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Ole Streicher <olebole@debian.org>
Date: Sat, 16 Sep 2023 10:55:50 +0200
Subject: Remove sphinx_asdf dependency
---
docs/conf.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index 77b5dce..a39ff34 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -143,7 +143,6 @@ htmlhelp_basename = project + "doc"
man_pages = [("index", project.lower(), project + " Documentation", [author], 1)]
sys.path.insert(0, str(Path(__file__).parent / "sphinxext"))
-extensions += ["sphinx_asdf"] # noqa: F405
# Enable nitpicky mode - which ensures that all references in the docs resolve.
nitpicky = True
|