diff --git a/docs/source/conf.py b/docs/source/conf.py index 96ebf178..630a770f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -82,9 +82,10 @@ def run(self): supported_dists = tuple( mtype.__name__ - for mtype in _logprob.registry.keys() + for mtype, mfunc in _logprob.registry.items() if issubclass(mtype, RandomVariable) and not mtype.__module__.startswith(r"aeppl.") + and not mfunc.__name__ == "transformed_logprob" ) res = nodes.bullet_list()