From ae735657ff1abf9916ae653c394ecbbb50e7affb Mon Sep 17 00:00:00 2001 From: Jen Hamon Date: Fri, 15 May 2026 17:57:37 +0000 Subject: [PATCH] chore: clean up .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .venv/ — was completely unignored; would have been committed if anyone ran `uv sync` and then `git add .`. - Add __pycache__/ and *.pyc — Python bytecode wasn't ignored. The prior `.__pycache__` entry (note the leading dot) was a typo that matched no real Python output directory. - Generalize examples.egg-info/ → *.egg-info/ so a rename of the project doesn't quietly reintroduce the leak. - Drop the duplicate `.env` (it was listed twice). - Group the new Python-artifact entries under a single comment. --- .gitignore | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8bed36c5..bb7e02ee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,10 @@ .DS_Store -.__pycache__ + +# Python build/runtime artifacts +__pycache__/ +*.pyc +*.egg-info/ +.venv/ # Data files **/*.parquet @@ -25,11 +30,9 @@ question_answering/tmp # secrets .env -examples.egg-info/ # worktrees .worktrees/ -.env bird-search-example-main