From 9e0a1770d818a73e190f0ab8dc64a22a4f96b807 Mon Sep 17 00:00:00 2001 From: Dan Guido Date: Tue, 5 Aug 2025 14:48:08 -0700 Subject: [PATCH] Remove obsolete venvs directory and update .gitignore for uv MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove venvs/ directory which was only used as a placeholder for virtualenv - Update .gitignore to use explicit .env/ and .venv/ patterns instead of *env - Modernize ignore patterns for uv-based dependency management 🤖 Generated with [Claude Code](https://claude.ai/code) --- .gitignore | 5 ++--- venvs/.gitinit | 0 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 venvs/.gitinit diff --git a/.gitignore b/.gitignore index 78e3df03..f414352a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,10 +3,9 @@ configs/* inventory_users *.kate-swp -*env +.env/ +.venv/ .DS_Store -venvs/* -!venvs/.gitinit .vagrant .ansible/ __pycache__/ diff --git a/venvs/.gitinit b/venvs/.gitinit deleted file mode 100644 index e69de29b..00000000