From 28534dce88d7e937eb2b21ebfe884cdf652438ad Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Mon, 6 Dec 2021 14:32:09 +0000 Subject: [PATCH] [ADD] conf: intersphinx entry for pillow Allows us to properly link to pillow's docs from docstrings using the python domain. Part-of: odoo/documentation#1352 --- conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conf.py b/conf.py index b63b680f0..2b0ce9b49 100644 --- a/conf.py +++ b/conf.py @@ -137,6 +137,7 @@ if odoo_dir_in_path: todo_include_todos = False intersphinx_mapping = { + 'pillow': ('https://pillow.readthedocs.io/en/stable/', None), 'python': ('https://docs.python.org/3/', None), 'werkzeug': ('https://werkzeug.palletsprojects.com/en/1.0.x/', None), }