File: docs-Use-inventary-from-packages.patch

package info (click to toggle)
python-msgspec 0.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,416 kB
  • sloc: javascript: 23,944; ansic: 20,940; python: 19,752; makefile: 26; sh: 23
file content (26 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (2)
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: Carsten Schoenert <c.schoenert@t-online.de>
Date: Sun, 28 Jul 2024 10:48:40 +0900
Subject: docs: Use inventary from packages

All of the intersphinx modules can be taken from packages.

Forwarded: not-needed
---
 docs/conf.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/conf.py b/docs/conf.py
index 6772cf9..c48818f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -88,8 +88,8 @@ extensions = [
     "myst_parser",
 ]
 intersphinx_mapping = {
-    "python": ("https://docs.python.org/3", None),
-    "attrs": ("https://www.attrs.org/en/stable/", None),
+    "python": ("/usr/share/doc/python3-doc/html", None),
+    "attrs": ("/usr/share/doc/python-attr-doc/html", None),
 }
 autodoc_typehints = "none"
 napoleon_numpy_docstring = True