diff --git a/README.md b/README.md index 0b03ed6..df42c41 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # decp.info -> v2.1.0 +> v2.1.1 Outil d'exploration et de téléchargement des données essentielles de la commande publique. @@ -26,9 +26,11 @@ python run.py ## Déploiement -- **Production** (branche `main`, [decp.info](https://decp.info)) : déploiement manuel via un déclenchement de la Github Action [Déploiement](https://github.com/ColinMaudry/decp.info/actions/workflows/deploy.yaml). +- **Production** (branche `main`, [decp.info](https://decp.info)) : déploiement manuel via un déclenchement de la Github Action [Déploiement](https://github.com/ColinMaudry/decp.info/actions/workflows/deploy.yaml) - **Test** (branche `dev`, [test.decp.info](https://test.decp.info)) : déploiement automatique à chaque push sur la branche `dev`, via la même Github Action. +Ne pas oublier de mettre à jour les fichier .env. + ## Liens connexes - [decp-processing](https://github.com/ColinMaudry/decp-processing) (traitement et publication des données) diff --git a/pyproject.toml b/pyproject.toml index acfbe79..c976cf3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "decp.info" description = "Interface d'exploration et d'analyse des marchés publics français." -version = "2.1.0" +version = "2.1.1" requires-python = ">= 3.10" authors = [ { name = "Colin Maudry", email = "colin+decp@maudry.com" } diff --git a/src/pages/home.py b/src/pages/home.py index e309bc0..164f12a 100644 --- a/src/pages/home.py +++ b/src/pages/home.py @@ -188,8 +188,7 @@ def update_table(page_current, page_size, filter_query, sort_by, data_timestamp) dff: pl.DataFrame = lff.collect() height = dff.height - - nb_rows = f"{format_number(height)} lignes" + nb_rows = f"{format_number(height)} lignes ({format_number(dff.select('uid').unique().height)} marchés)" # Pagination des données start_row = page_current * page_size