no-intersphinx-plugin-in-doc.patch 672 B

123456789101112131415161718
  1. Description: Do not use Intersphinx plugin in sphinx doc
  2. This avoids network access.
  3. Author: Thomas Goirand <zigo@debian.org>
  4. Forwarded: Debian-specific
  5. Last-Update: 2014-06-01
  6. --- python-itsdangerous.orig/docs/conf.py
  7. +++ python-itsdangerous/docs/conf.py
  8. @@ -11,7 +11,7 @@
  9. # General --------------------------------------------------------------
  10. master_doc = "index"
  11. -extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "pallets_sphinx_themes"]
  12. +extensions = ["sphinx.ext.autodoc", "pallets_sphinx_themes"]
  13. intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)}
  14. # HTML -----------------------------------------------------------------