From 2707435d21b41f1e11ef04f54d8355130eec74a3 Mon Sep 17 00:00:00 2001 From: pbo Date: Tue, 16 Jun 2026 18:16:31 +0200 Subject: [PATCH] fix: add build/ to .gitignore setuptools generates a build/ directory when installing the package in editable mode (pip install -e .), which was missing from the ignore list alongside the existing dist/ entry. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 001de9a8..a065da94 100644 --- a/.gitignore +++ b/.gitignore @@ -36,4 +36,5 @@ __pycache__ .idea/ # python -dist/ \ No newline at end of file +dist/ +build/ \ No newline at end of file