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 <jiaqing.zhao@linux.intel.com>
This commit is contained in:
Jiaqing Zhao 2023-07-10 06:27:23 +00:00 committed by David Kinder
parent ab19b3e30d
commit 6d535c15fe
1 changed files with 1 additions and 1 deletions

View File

@ -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'