From 8e3e0c5dd7228dd6f25af84e06180dc28e3ffd0c Mon Sep 17 00:00:00 2001 From: Yannick DAYER <yannick.dayer@idiap.ch> Date: Wed, 9 Nov 2022 15:49:44 +0100 Subject: [PATCH] [doc] All catalog urls already in auto-intersphinx --- doc/catalog.json | 26 -------------------------- doc/conf.py | 2 +- src/bob/io/image.py | 6 +++--- 3 files changed, 4 insertions(+), 30 deletions(-) delete mode 100644 doc/catalog.json diff --git a/doc/catalog.json b/doc/catalog.json deleted file mode 100644 index 98f30b8..0000000 --- a/doc/catalog.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "numpy": { - "version": { - "latest": "https://numpy.org/doc/stable/" - }, - "sources": { - "readthedocs": "numpy" - } - }, - "matplotlib": { - "version": { - "latest": "https://matplotlib.org/stable/" - }, - "sources": { - "readthedocs": "matplotlib" - } - }, - "PIL": { - "version": { - "latest": "https://pillow.readthedocs.io/en/latest/" - }, - "sources": { - "readthedocs": "pillow" - } - } -} diff --git a/doc/conf.py b/doc/conf.py index 7472718..6b6ac72 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -110,6 +110,6 @@ auto_intersphinx_packages = [ ("python", "3"), "numpy", "matplotlib", - "PIL", + "pillow", ] auto_intersphinx_catalog = "catalog.json" diff --git a/src/bob/io/image.py b/src/bob/io/image.py index 1b76eca..9eeecc3 100644 --- a/src/bob/io/image.py +++ b/src/bob/io/image.py @@ -57,8 +57,8 @@ def bob_to_pillow(img): Returns ------- - PIL.Image.Image - An object of pillow.Image. + pillow.Image.Image + An Image object of pillow. """ # first convert to matplotlib format img = to_matplotlib(img) @@ -78,7 +78,7 @@ def pillow_to_bob(img): Parameters ---------- - img: PIL.Image.Image + img: pillow.Image.Image A Pillow Image Returns -- GitLab