From 634678b57ee913c0ad4d018facb4657a6e2e4caf Mon Sep 17 00:00:00 2001 From: Jeremy PASTOURET Date: Fri, 2 Aug 2024 16:53:21 +0200 Subject: [PATCH 1/3] =?UTF-8?q?Mise=20=C3=A0=20jour=20du=20nombre=20de=20s?= =?UTF-8?q?=C3=A9ances=20pour=20Sant=C3=A9=20Psy=20Education?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 8 ++++++++ .../education/sante_psy/etudiant/seances_max.yaml | 6 ++++++ setup.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4db0f15b37..c2ee839e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 168.0.4 [2340](https://github.com/openfisca/openfisca-france/pull/2340) + +* Changement mineur. +* Périodes concernées : à partir du 01/07/2024 +* Zones impactées : `openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml`. +* Détails : + - Passage de 8 à 12 séances gratuites de suivi avec un psychologue + ## 168.0.3 [2339](https://github.com/openfisca/openfisca-france/pull/2339) * Changement mineur. diff --git a/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml b/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml index a47b1a5474..7d30b92aed 100644 --- a/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml +++ b/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml @@ -4,6 +4,8 @@ values: value: 6 2023-01-06: value: 8 + 2024-07-01: + value: 12 metadata: short_label: Nb max de séances reference: @@ -11,8 +13,12 @@ metadata: href: https://www.service-public.fr/particuliers/actualites/A14726 2023-01-06: href: https://www.service-public.fr/particuliers/actualites/A14726 + 2024-07-01: + href: https://www.enseignementsup-recherche.gouv.fr/fr/bo/2024/Hebdo26/ESRS2415963C notes: 2021-03-10: - title: 2 cycles de 3 séances au maximum 2023-01-06: - title: 8 séances gratuites de suivi avec un psychologue + 2023-07-01: + - title: 12 séances gratuites de suivi avec un psychologue diff --git a/setup.py b/setup.py index 11a54e24d7..a269326986 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = 'OpenFisca-France', - version = '168.0.3', + version = '168.0.4', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [ From 2bf850213d0618c90c5671de0bed04a0da3fab34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20PASTOURET?= Date: Mon, 5 Aug 2024 18:11:30 +0200 Subject: [PATCH 2/3] Update openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml Co-authored-by: Simon Hamery --- .../education/sante_psy/etudiant/seances_max.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml b/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml index 7d30b92aed..b6d152fb45 100644 --- a/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml +++ b/openfisca_france/parameters/prestations_sociales/education/sante_psy/etudiant/seances_max.yaml @@ -20,5 +20,5 @@ metadata: - title: 2 cycles de 3 séances au maximum 2023-01-06: - title: 8 séances gratuites de suivi avec un psychologue - 2023-07-01: + 2024-07-01: - title: 12 séances gratuites de suivi avec un psychologue From b5aff20e51ae37d60abdee432947604e59174204 Mon Sep 17 00:00:00 2001 From: Jeremy PASTOURET Date: Mon, 5 Aug 2024 19:03:09 +0200 Subject: [PATCH 3/3] =?UTF-8?q?ajout=20d'un=20test=20de=20v=C3=A9rificatio?= =?UTF-8?q?n=20que=20le=20nombre=20de=20s=C3=A9ances=20en=20aout=20est=20b?= =?UTF-8?q?ien=20pris=20en=20compte?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/formulas/sante_psy_etudiant.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/formulas/sante_psy_etudiant.yaml b/tests/formulas/sante_psy_etudiant.yaml index 07203fd865..512ad8ec2a 100644 --- a/tests/formulas/sante_psy_etudiant.yaml +++ b/tests/formulas/sante_psy_etudiant.yaml @@ -4,3 +4,10 @@ scolarite: [ enseignement_superieur, lycee, enseignement_superieur ] output: seances_sante_psy_etudiant: [ 0, 0, 6 ] + +- period: 2024-08 + input: + etudiant: [ false, true, true ] + scolarite: [ enseignement_superieur, lycee, enseignement_superieur ] + output: + seances_sante_psy_etudiant: [ 0, 0, 12 ]