From 1af6f8f561bc5835092cbd0993bafa43be508b62 Mon Sep 17 00:00:00 2001 From: "mehul.sonowal" Date: Wed, 1 Jul 2026 16:37:53 -0400 Subject: [PATCH] chore: gitignore .venv/, __pycache__/, and .DS_Store Stop local virtualenvs, Python bytecode caches, and macOS Finder metadata from showing up as untracked noise. Co-Authored-By: Claude Opus 4.8 (1M context) --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 4d663a35..a72f9c36 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ .env myenv/ +.venv/ .ipynb_checkpoints/ +__pycache__/ +.DS_Store