Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ajoute un calculate_output à crds_af #2439

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

### 169.16.4 [2439](https://github.com/openfisca/openfisca-france/pull/2439)

* Changement mineur.
* Périodes concernées : toutes
* Zones impactées :
- `openfisca_france/model/prestations/prestations_familiales/af.py`
* Détails :
- Ajoute un calculate_output à crds_af

### 169.16.3 [2434](https://github.com/openfisca/openfisca-france/pull/2434)

* Changement mineur.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,7 @@ def depassement_helper(famille, period, parameters, nb_enf_tot):


class crds_af(Variable):
calculate_output = calculate_output_add
value_type = float
entity = Famille
label = 'CRDS sur les allocations familiales'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "OpenFisca-France"
version = "169.16.3"
version = "169.16.4"
description = "OpenFisca Rules as Code model for France."
readme = "README.md"
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code", "france"]
Expand Down
Loading