From 2d6e7d17021320b150e1e2cd1143081073b76bb1 Mon Sep 17 00:00:00 2001 From: erhe Date: Thu, 26 Oct 2023 12:07:24 +0200 Subject: [PATCH 1/2] missing package install. --- readthedocs.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readthedocs.yaml b/readthedocs.yaml index f6274270..2f30d75a 100644 --- a/readthedocs.yaml +++ b/readthedocs.yaml @@ -8,3 +8,5 @@ build: python: install: - requirements: doc/requirements.txt + - method: pip + path: . From 587b3e537af53151cf65067967f43d6fb16fe5cc Mon Sep 17 00:00:00 2001 From: erhe Date: Thu, 26 Oct 2023 12:39:02 +0200 Subject: [PATCH 2/2] autodoc_default_options --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 2e5a5890..1cea37bc 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -69,7 +69,7 @@ # -- Autodoc ------------------------------------------------------------------ -autodoc_default_flags = ['members', 'undoc-members', 'inherited-members'] +autodoc_default_options = {"members": None, 'undoc-members': None, 'inherited-members': None} autodoc_member_order = 'bysource'