From 2b3e042da73bf5f8d92aebdf79ccf92d968e6553 Mon Sep 17 00:00:00 2001 From: Eugene Meidinger Date: Sat, 30 Aug 2025 12:28:37 -0400 Subject: [PATCH] Add .venv to .gitignore for Python virtual environments Building the Semantic model MCP server creates a virtual environment which mucks up the git log. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0124a62d..bec35bc7 100644 --- a/.gitignore +++ b/.gitignore @@ -340,6 +340,9 @@ paket-files/ __pycache__/ *.pyc +# Python virtual environment +.venv/ + # Cake - Uncomment if you are using it # tools/** # !tools/packages.config @@ -408,4 +411,4 @@ FodyWeavers.xsd *.msp # JetBrains Rider -*.sln.iml \ No newline at end of file +*.sln.iml