From 7804e65259d192a1c5bfaa49954d15be486646f7 Mon Sep 17 00:00:00 2001 From: Philippe Blain Date: Thu, 12 Nov 2020 10:21:31 -0500 Subject: Add '.venv' to .gitignore When using the built-in Python3 module 'venv' to create a virtual environment, it is common to name the folder containing the virtual environment '.venv' [1]. To help developers wishing to use a virtual environment to develop the project, add '.venv' to the .gitignore file. [1] https://docs.python.org/3/tutorial/venv.html#creating-virtual-environments Signed-off-by: Philippe Blain --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5d6f10a..e0d7c2e 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ __pycache__ *.patch *.mbx *.cover +.venv -- cgit v1.2.3