From d00207a65c8c03a9bb78c09a83bdfafcb3b75214 Mon Sep 17 00:00:00 2001 From: Ayush Singh <ayushdevel1325@gmail.com> Date: Fri, 5 Jan 2024 22:19:12 +0530 Subject: [PATCH] Exclude .venv Signed-off-by: Ayush Singh <ayushdevel1325@gmail.com> --- conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf.py b/conf.py index 2c0b4efd..0b60e726 100644 --- a/conf.py +++ b/conf.py @@ -87,7 +87,7 @@ navigation_with_keys = True # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'env'] +exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'env', ".venv"] html_theme = 'sphinx_rtd_theme' html_show_sphinx = False -- GitLab