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:
parent
ab19b3e30d
commit
6d535c15fe
|
@ -133,7 +133,7 @@ language = 'en'
|
||||||
# List of patterns, relative to source directory, that match files and
|
# List of patterns, relative to source directory, that match files and
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
# This patterns also effect to html_static_path and html_extra_path
|
# 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.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
pygments_style = 'sphinx'
|
pygments_style = 'sphinx'
|
||||||
|
|
Loading…
Reference in New Issue