From 6d535c15fed25763b7595432c28a2774f089ecf4 Mon Sep 17 00:00:00 2001 From: Jiaqing Zhao Date: Mon, 10 Jul 2023 06:27:23 +0000 Subject: [PATCH] doc: exclude 'venv' in conf.py This patch excludes 'venv' directory to enable users to build doc with venv to prevent pip package conflicts. 'venv' is also ignored in .gitignore. Tracked-On: #8425 Signed-off-by: Jiaqing Zhao --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 31eb175fd..064556f11 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -133,7 +133,7 @@ language = 'en' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ['_build', 'misc/README.rst' ] +exclude_patterns = ['_build', 'misc/README.rst', 'venv' ] # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx'