summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Blain <levraiphilippeblain@gmail.com>2020-11-12 10:21:31 -0500
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-11-17 15:59:43 -0500
commit7804e65259d192a1c5bfaa49954d15be486646f7 (patch)
treeb0fc8eee5c9eb7d517dcf77a59760354e3e06e9a
parentf33033c03cf96ed769289ebf6d3c26b0cf540683 (diff)
downloadb4-7804e65259d192a1c5bfaa49954d15be486646f7.tar.gz
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 <levraiphilippeblain@gmail.com>
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 5d6f10a..e0d7c2e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,3 +13,4 @@ __pycache__
*.patch
*.mbx
*.cover
+.venv