From 0c3b0265b457c7554617e9a0d76b8e51f999bfb8 Mon Sep 17 00:00:00 2001 From: Colin Maudry Date: Wed, 15 Apr 2026 16:03:06 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20la=20d=C3=A9pendance=20duckdb?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ajoute duckdb (==1.5.2) à pyproject.toml et ignore les artefacts runtime (decp.duckdb, .tmp, .lock) qui sont régénérés au démarrage depuis decp_prod.parquet. refs #71 Co-Authored-By: Claude Opus 4.6 --- .gitignore | 5 +++++ pyproject.toml | 1 + 2 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 4e281be..6c17783 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,8 @@ __pycache__ .worktrees build .env + +# DuckDB runtime artifacts (regenerated from decp_prod.parquet at startup) +**/decp.duckdb +**/decp.duckdb.tmp +**/decp.duckdb.lock diff --git a/pyproject.toml b/pyproject.toml index 09a1ab2..1d2cb02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ dependencies = [ "unidecode", "dash-leaflet", "dash-extensions", + "duckdb", "flask-caching", ]