From 702101bfe22f7c4a492f231752a9f617733e332a Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 8 Aug 2026 11:39:14 -0700 Subject: [PATCH] ignore the .venv directory On klone the venv is created inside the repo with create_cdsc_venv, so it otherwise shows up as untracked in every git status. Co-Authored-By: Claude Opus 5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 88a3586..03e5a21 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ uv.lock # Python build and test output __pycache__/ /test/test_output/ + +# Virtualenv (created with create_cdsc_venv on klone) +/.venv/