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
|
From: Michael Fladischer <FladischerMichael@fladi.at>
Date: Wed, 24 Jan 2024 15:39:25 +0000
Subject: Replace remote objects.inv URLs with local paths.
Documentation for mkdocsstrings has not been packaged yet, so drop it from the
list.
---
mkdocs.yml | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/mkdocs.yml b/mkdocs.yml
index cb54d58..e679a23 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -10,9 +10,8 @@ plugins:
handlers:
python:
import:
- - https://docs.python.org/3/objects.inv
- - https://installer.readthedocs.io/en/stable/objects.inv
- - https://mkdocstrings.github.io/autorefs/objects.inv
+ - file:///usr/share/doc/python3.11/html/objects.inv
+ - file:///usr/share/doc/python-installer-doc/html/objects.inv
options:
docstring_options:
ignore_init_summary: true
|