From 252058ed8e0ce302e2e5cdcb5d473afe56d643aa Mon Sep 17 00:00:00 2001 From: jwg4 Date: Mon, 22 May 2017 09:24:44 +0000 Subject: [PATCH] Consolidate all environments in one section Some of these names relate to specific tools, others could be used by multiple tools. In particular, virtualenv, the most popular tool for creating Python environments, does not mandate any of these and venv/ or .venv are simply conventional. It is more readable to group all of these together. --- Python.gitignore | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index 7bbc71c0..113294a5 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -8,7 +8,6 @@ __pycache__/ # Distribution / packaging .Python -env/ build/ develop-eggs/ dist/ @@ -79,11 +78,10 @@ celerybeat-schedule # SageMath parsed files *.sage.py -# dotenv +# Environments .env - -# virtualenv .venv +env/ venv/ ENV/