From 28837183fa55a6764621580983b3d724f3881a6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20K=C3=B6ster?= Date: Fri, 26 Nov 2021 12:39:50 +0100 Subject: [PATCH] docs: skip lazy property --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 01451f0f5..158436ff2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,6 +40,9 @@ 'myst_parser', ] +# skip internal class that Sphinx can't process (#296) +autodoc_default_options = {'exclude-members': 'lazy_property'} + # Snakemake theme (made by SciAni). html_css_files = ["theme.css"]