From abc2af9daf8137466cc33d09c6be5c19cac53dcb Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Sat, 8 Nov 2025 18:49:56 -0500 Subject: [PATCH] fix: Exclude .venv and build artifacts from Jupyter Book scanning --- book/_config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/book/_config.yml b/book/_config.yml index eab7f8c8..7b7c6f41 100644 --- a/book/_config.yml +++ b/book/_config.yml @@ -18,6 +18,14 @@ execute: allow_errors: true timeout: 300 +# Exclude patterns - don't scan these directories/files +exclude_patterns: + - _build + - .venv + - "**/.venv/**" + - "**/__pycache__/**" + - "**/.DS_Store" + # GitHub repository configuration for GitHub Pages repository: url: https://github.com/mlsysbook/TinyTorch