From d40ba425ddab5ab7850fb8b9fb9957234262b6ab Mon Sep 17 00:00:00 2001 From: James Briggs <james.briggs@hotmail.com> Date: Sat, 3 Aug 2024 07:15:16 +0400 Subject: [PATCH] fix: testing auto --- docs/source/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index fd1f2329..adb81287 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,4 +1,7 @@ from typing import List +import os +import sys +sys.path.insert(0, os.path.abspath('../..')) # Source code dir relative to this file # Configuration file for the Sphinx documentation builder. # @@ -21,7 +24,7 @@ extensions = ["sphinx.ext.autodoc", "sphinx.ext.autosummary", "sphinxawesome_the templates_path = ["_templates"] exclude_patterns: List[str] = [] autosummary_generate = True -numpydoc_show_class_members = False +numpydoc_show_class_members = True # -- Options for HTML output ------------------------------------------------- -- GitLab