summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2023-04-28 11:49:37 -0400
committerGitHub <noreply@github.com>2023-04-28 17:49:37 +0200
commitdd90c048269314e3d257f5a374cc3008bed487e0 (patch)
tree7c48d67c173c3d24212f3406c07cdbe8d85b3d81
parentd788a4f1ee2cfe0642ea9e0533bb840077a88ca6 (diff)
downloadpyopenssl-dd90c048269314e3d257f5a374cc3008bed487e0.tar.gz
fix sphinx config for new version (#1214)
-rw-r--r--doc/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 0aeedbf..eb8f800 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -251,6 +251,6 @@ latex_documents = [
man_pages = [("index", "pyopenssl", "pyOpenSSL Documentation", [authors], 1)]
intersphinx_mapping = {
- "https://docs.python.org/3": None,
- "https://cryptography.io/en/latest/": None,
+ "python": ("https://docs.python.org/3", None),
+ "cryptography": ("https://cryptography.io/en/latest/", None),
}