From 3263a6a3c3d482eefdc688ad5ee946e161ec99fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciar=C3=A1n=20Ainsworth?= Date: Thu, 29 Jun 2023 09:00:28 +0200 Subject: [PATCH] fix(docs): don't include rst files from .venv Part-of: --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 819d9a708..6bfe12bf6 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -110,7 +110,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", "Thumbs.db", ".DS_Store"] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", ".venv"] # The name of the Pygments (syntax highlighting) style to use. pygments_style = "sphinx"