From 33bfa69b2e1ec2e6b8b5b041ec490d2dc7206bfd Mon Sep 17 00:00:00 2001 From: Septatrix <24257556+Septatrix@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:44:20 +0100 Subject: [PATCH] Add .venv to gitignore This directory is commonly used for virtual Python environments. These are useful when developing to install different Python versions as well as install tooling like mkosi and mypy in an isolated fashion without influencing the global system. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index c51807504d..08510b0ec2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ .config.args .gdb_history .deps/ +.venv/ .mypy_cache/ __pycache__/ /*.gcda