1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: Removed sphinx ext.intersphinx to avoid network access
Author: Josenilson Ferreira da Silva <nilsonfsilva@hotmail.com>
Forwarded: not-needed
Last-Update: 2024-11-04
Index: python-rich-rst/docs/source/conf.py
===================================================================
--- python-rich-rst.orig/docs/source/conf.py
+++ python-rich-rst/docs/source/conf.py
@@ -36,7 +36,6 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.viewcode',
'sphinx.ext.napoleon',
- 'sphinx.ext.intersphinx',
'sphinx_copybutton',
]
@@ -94,4 +93,4 @@ html_context = {
"github_repo": project,
"github_version": "main",
"conf_py_path": "/docs/source/",
-}
\ No newline at end of file
+}
|