From 0d031c8a558a70664b7ce1e7f580472cff73c2b8 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Sat, 6 Jan 2024 18:00:33 +0100 Subject: [PATCH] Update .gitignore to ignore virtual envs --- .gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6fc6b959..34b94382 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,18 @@ # Build directory /build/* +dist/ +sdists/ # Emacs files *~ # Compiled python files +__pycache__/ *.py[cod] # Generated files *.egg* **.dot **.so -VERSION \ No newline at end of file +VERSION +# Virtual environments +venv*/ +.env/ +.venv*/ \ No newline at end of file