From caf1505eb9d8f231f295e1d70cac6c69a157c8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Wed, 20 Sep 2023 09:29:57 -0600 Subject: [PATCH] Skip docs for deprecated modules --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 9f6f77f8..d1cdd8b2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -147,7 +147,9 @@ def skip_member_filter( Returns: Whether to skip the member. """ - if name == "citric.rest.client": + if name == "citric.rest.client" or name.startswith( + ("citric.client", "citric.session", "citric.method"), + ): skip = True return skip