From 4710f7182acfe18482ff8e0caff0f3af4974a24c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Andr=C3=A9s?= <62516404+andresm-data@users.noreply.github.com> Date: Thu, 4 Jun 2026 13:50:31 -0500 Subject: [PATCH 1/2] feat: update Python.gitignore to exclude PDF, CSV, and temporary files --- Python.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Python.gitignore b/Python.gitignore index b3ec7d5e13..835e1c4802 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -36,6 +36,13 @@ MANIFEST pip-log.txt pip-delete-this-directory.txt +# Generated documents / data exports +*.pdf +*.csv + +# Microsoft Office temporary files +~$* + # Unit test / coverage reports htmlcov/ .tox/ From 9165e4dc2d365021154a6e928e1dfd8d3435bdf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Andr=C3=A9s?= <62516404+andresm-data@users.noreply.github.com> Date: Thu, 11 Jun 2026 13:17:40 -0500 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20limitar=20alcance=20de=20exclusi?= =?UTF-8?q?=C3=B3n=20de=20archivos=20pdf=20y=20csv?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Python.gitignore | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Python.gitignore b/Python.gitignore index 835e1c4802..782a9a2327 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -37,8 +37,12 @@ pip-log.txt pip-delete-this-directory.txt # Generated documents / data exports -*.pdf -*.csv +reports/*.pdf +reports/*.csv +output/*.pdf +output/*.csv +data/*.pdf +data/*.csv # Microsoft Office temporary files ~$*