From 7ffc959fc6469ce2370256062471706e582c3f6a Mon Sep 17 00:00:00 2001 From: Tom Carrio Date: Mon, 7 Nov 2022 21:44:11 -0500 Subject: [PATCH] build: ignore venv directories - commonly stored in .venv as the initial dir to support Signed-off-by: Tom Carrio --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 5abdfe0..6e19874 100644 --- a/.gitignore +++ b/.gitignore @@ -47,4 +47,7 @@ coverage.xml *.pot # Sphinx documentation -docs/_build/ \ No newline at end of file +docs/_build/ + +# Virtual env directories +.venv \ No newline at end of file