policyengine-uk 2.38.0__py3-none-any.whl → 2.38.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml +1 -1
- policyengine_uk/parameters/gov/economic_assumptions/lag_cpi.py +27 -0
- policyengine_uk/system.py +7 -3
- policyengine_uk/tests/microsimulation/reforms_config.yaml +8 -8
- policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml +9 -9
- policyengine_uk/variables/contrib/policyengine/employer_ni/employer_ni_fixed_employer_cost_change.py +1 -0
- {policyengine_uk-2.38.0.data → policyengine_uk-2.38.2.data}/data/share/openfisca/openfisca-country-template/CHANGELOG.md +14 -0
- {policyengine_uk-2.38.0.dist-info → policyengine_uk-2.38.2.dist-info}/METADATA +1 -1
- {policyengine_uk-2.38.0.dist-info → policyengine_uk-2.38.2.dist-info}/RECORD +13 -12
- {policyengine_uk-2.38.0.data → policyengine_uk-2.38.2.data}/data/share/openfisca/openfisca-country-template/LICENSE +0 -0
- {policyengine_uk-2.38.0.data → policyengine_uk-2.38.2.data}/data/share/openfisca/openfisca-country-template/README.md +0 -0
- {policyengine_uk-2.38.0.dist-info → policyengine_uk-2.38.2.dist-info}/WHEEL +0 -0
- {policyengine_uk-2.38.0.dist-info → policyengine_uk-2.38.2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
from policyengine_core.parameters import Parameter, ParameterNode
|
2
|
+
|
3
|
+
|
4
|
+
def add_lagged_cpi(
|
5
|
+
parameters: ParameterNode,
|
6
|
+
) -> ParameterNode:
|
7
|
+
"""
|
8
|
+
Add lagged average earnings to the economic assumptions.
|
9
|
+
"""
|
10
|
+
obr = parameters.gov.economic_assumptions.yoy_growth.obr
|
11
|
+
cpi = obr.consumer_price_index
|
12
|
+
|
13
|
+
lagged_cpi = Parameter(
|
14
|
+
"gov.economic_assumptions.yoy_growth.obr.lagged_cpi",
|
15
|
+
data={
|
16
|
+
"values": {
|
17
|
+
f"{year}-01-01": cpi(year - 1) for year in range(2010, 2030)
|
18
|
+
},
|
19
|
+
},
|
20
|
+
)
|
21
|
+
|
22
|
+
obr.add_child(
|
23
|
+
"lagged_cpi",
|
24
|
+
lagged_cpi,
|
25
|
+
)
|
26
|
+
|
27
|
+
return parameters
|
policyengine_uk/system.py
CHANGED
@@ -20,6 +20,9 @@ from policyengine_uk.parameters.gov.economic_assumptions.create_economic_assumpt
|
|
20
20
|
from policyengine_uk.parameters.gov.economic_assumptions.lag_average_earnings import (
|
21
21
|
add_lagged_earnings,
|
22
22
|
)
|
23
|
+
from policyengine_uk.parameters.gov.economic_assumptions.lag_cpi import (
|
24
|
+
add_lagged_cpi,
|
25
|
+
)
|
23
26
|
from policyengine_core.reforms import Reform
|
24
27
|
from policyengine_uk.reforms import create_structural_reforms_from_parameters
|
25
28
|
|
@@ -45,7 +48,7 @@ from policyengine_core.reforms import Reform
|
|
45
48
|
|
46
49
|
COUNTRY_DIR = Path(__file__).parent
|
47
50
|
|
48
|
-
ENHANCED_FRS = "hf://policyengine/policyengine-uk-data/
|
51
|
+
ENHANCED_FRS = "hf://policyengine/policyengine-uk-data/enhanced_frs_2023_24.h5"
|
49
52
|
|
50
53
|
|
51
54
|
class CountryTaxBenefitSystem(TaxBenefitSystem):
|
@@ -65,6 +68,7 @@ class CountryTaxBenefitSystem(TaxBenefitSystem):
|
|
65
68
|
self.apply_reform_set(reform)
|
66
69
|
self.parameters = add_private_pension_uprating_factor(self.parameters)
|
67
70
|
self.parameters = add_lagged_earnings(self.parameters)
|
71
|
+
self.parameters = add_lagged_cpi(self.parameters)
|
68
72
|
self.parameters = add_triple_lock(self.parameters)
|
69
73
|
self.parameters = create_economic_assumption_indices(self.parameters)
|
70
74
|
self.parameters.add_child("baseline", self.parameters.clone())
|
@@ -101,8 +105,8 @@ variables = system.variables
|
|
101
105
|
class Simulation(CoreSimulation):
|
102
106
|
default_tax_benefit_system = CountryTaxBenefitSystem
|
103
107
|
default_tax_benefit_system_instance = system
|
104
|
-
default_calculation_period =
|
105
|
-
default_input_period =
|
108
|
+
default_calculation_period = 2023
|
109
|
+
default_input_period = 2023
|
106
110
|
default_role = "member"
|
107
111
|
max_spiral_loops = 10
|
108
112
|
|
@@ -1,33 +1,33 @@
|
|
1
1
|
reforms:
|
2
2
|
- name: Raise basic rate by 1pp
|
3
|
-
expected_impact: 7.
|
3
|
+
expected_impact: 7.6
|
4
4
|
parameters:
|
5
5
|
gov.hmrc.income_tax.rates.uk[0].rate: 0.21
|
6
6
|
- name: Raise higher rate by 1pp
|
7
|
-
expected_impact: 4.
|
7
|
+
expected_impact: 4.8
|
8
8
|
parameters:
|
9
9
|
gov.hmrc.income_tax.rates.uk[1].rate: 0.42
|
10
10
|
- name: Raise personal allowance by ~800GBP/year
|
11
|
-
expected_impact: 0.
|
11
|
+
expected_impact: 0.7
|
12
12
|
parameters:
|
13
13
|
gov.hmrc.income_tax.allowances.personal_allowance.amount: 13000
|
14
14
|
- name: Raise child benefit by 25GBP/week per additional child
|
15
|
-
expected_impact: -1.
|
15
|
+
expected_impact: -1.4
|
16
16
|
parameters:
|
17
17
|
gov.hmrc.child_benefit.amount.additional: 25
|
18
18
|
- name: Reduce Universal Credit taper rate to 20%
|
19
|
-
expected_impact: -
|
19
|
+
expected_impact: -41.2
|
20
20
|
parameters:
|
21
21
|
gov.dwp.universal_credit.means_test.reduction_rate: 0.2
|
22
22
|
- name: Raise Class 1 main employee NICs rate to 10%
|
23
|
-
expected_impact: 12.
|
23
|
+
expected_impact: 12.2
|
24
24
|
parameters:
|
25
25
|
gov.hmrc.national_insurance.class_1.rates.employee.main: 0.1
|
26
26
|
- name: Raise VAT standard rate by 2pp
|
27
|
-
expected_impact: 19.
|
27
|
+
expected_impact: 19.4
|
28
28
|
parameters:
|
29
29
|
gov.hmrc.vat.standard_rate: 0.22
|
30
30
|
- name: Raise additional rate by 3pp
|
31
|
-
expected_impact:
|
31
|
+
expected_impact: 5.5
|
32
32
|
parameters:
|
33
33
|
gov.hmrc.income_tax.rates.uk[2].rate: 0.48
|
@@ -10,7 +10,7 @@
|
|
10
10
|
members: [child1]
|
11
11
|
extended_childcare_entitlement_eligible: true
|
12
12
|
output:
|
13
|
-
extended_childcare_entitlement:
|
13
|
+
extended_childcare_entitlement: 6857.356
|
14
14
|
|
15
15
|
- name: Eligible for 15 hours - All first conditions met
|
16
16
|
period: 2025
|
@@ -24,7 +24,7 @@
|
|
24
24
|
members: [child1]
|
25
25
|
extended_childcare_entitlement_eligible: true
|
26
26
|
output:
|
27
|
-
extended_childcare_entitlement:
|
27
|
+
extended_childcare_entitlement: 4828.138
|
28
28
|
|
29
29
|
- name: Not eligible (one condition not met)
|
30
30
|
period: 2025
|
@@ -54,7 +54,7 @@
|
|
54
54
|
members: [child1, child2]
|
55
55
|
extended_childcare_entitlement_eligible: true
|
56
56
|
output:
|
57
|
-
extended_childcare_entitlement:
|
57
|
+
extended_childcare_entitlement: 11685.494
|
58
58
|
|
59
59
|
- name: Not eligible - Family with multiple children but conditions not met
|
60
60
|
period: 2025
|
@@ -89,7 +89,7 @@
|
|
89
89
|
family_type: COUPLE_WITH_CHILDREN
|
90
90
|
extended_childcare_entitlement_eligible: true
|
91
91
|
output:
|
92
|
-
extended_childcare_entitlement:
|
92
|
+
extended_childcare_entitlement: 18542.85
|
93
93
|
|
94
94
|
- name: No expenses for zero hours
|
95
95
|
period: 2025
|
@@ -118,7 +118,7 @@
|
|
118
118
|
members: [child1]
|
119
119
|
extended_childcare_entitlement_eligible: true
|
120
120
|
output:
|
121
|
-
extended_childcare_entitlement:
|
121
|
+
extended_childcare_entitlement: 4571.5703 # 20 hours * 38 weeks * £6.07 per hour (2025 rate)
|
122
122
|
|
123
123
|
- name: Child using fewer hours than maximum entitlement - multiple children
|
124
124
|
period: 2025
|
@@ -136,7 +136,7 @@
|
|
136
136
|
members: [child1, child2]
|
137
137
|
extended_childcare_entitlement_eligible: true
|
138
138
|
output:
|
139
|
-
extended_childcare_entitlement:
|
139
|
+
extended_childcare_entitlement: 6647.4365
|
140
140
|
|
141
141
|
- name: Benefit unit maximum hours cap applied
|
142
142
|
period: 2025
|
@@ -155,7 +155,7 @@
|
|
155
155
|
extended_childcare_entitlement_eligible: true
|
156
156
|
maximum_extended_childcare_hours_usage: 40
|
157
157
|
output:
|
158
|
-
extended_childcare_entitlement:
|
158
|
+
extended_childcare_entitlement: 13714.712
|
159
159
|
|
160
160
|
|
161
161
|
- name: Benefit unit without maximum hours cap applied
|
@@ -172,7 +172,7 @@
|
|
172
172
|
extended_childcare_entitlement_eligible: true
|
173
173
|
maximum_extended_childcare_hours_usage: 10
|
174
174
|
output:
|
175
|
-
extended_childcare_entitlement:
|
175
|
+
extended_childcare_entitlement: 2285.7852
|
176
176
|
|
177
177
|
|
178
178
|
- name: Benefit unit without maximum hours cap applied with 3 years old child
|
@@ -189,4 +189,4 @@
|
|
189
189
|
extended_childcare_entitlement_eligible: true
|
190
190
|
maximum_extended_childcare_hours_usage: 18
|
191
191
|
output:
|
192
|
-
extended_childcare_entitlement:
|
192
|
+
extended_childcare_entitlement: 3428.678
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [2.38.2] - 2025-07-15 08:50:48
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Temporarily suspended employer_ni_fixed_cost_change as it returns impacts in the baseline.
|
13
|
+
|
14
|
+
## [2.38.1] - 2025-07-14 15:03:33
|
15
|
+
|
16
|
+
### Fixed
|
17
|
+
|
18
|
+
- Lag CPI correctly for benefit uprating.
|
19
|
+
|
8
20
|
## [2.38.0] - 2025-07-14 14:10:31
|
9
21
|
|
10
22
|
### Fixed
|
@@ -1930,6 +1942,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
1930
1942
|
|
1931
1943
|
|
1932
1944
|
|
1945
|
+
[2.38.2]: https://github.com/PolicyEngine/openfisca-uk/compare/2.38.1...2.38.2
|
1946
|
+
[2.38.1]: https://github.com/PolicyEngine/openfisca-uk/compare/2.38.0...2.38.1
|
1933
1947
|
[2.38.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.37.0...2.38.0
|
1934
1948
|
[2.37.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.36.1...2.37.0
|
1935
1949
|
[2.36.1]: https://github.com/PolicyEngine/openfisca-uk/compare/2.36.0...2.36.1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: policyengine-uk
|
3
|
-
Version: 2.38.
|
3
|
+
Version: 2.38.2
|
4
4
|
Summary: PolicyEngine tax and benefit system for the UK
|
5
5
|
Project-URL: Homepage, https://github.com/PolicyEngine/policyengine-uk
|
6
6
|
Project-URL: Repository, https://github.com/PolicyEngine/policyengine-uk
|
@@ -3,13 +3,13 @@ policyengine_uk/entities.py,sha256=9yUbkUWQr3WydNE-gHhUudG97HGyXIZY3dkgQ6Z3t9A,1
|
|
3
3
|
policyengine_uk/model_api.py,sha256=D5OuQpQbdBXiF6r7LvCLWjsTkAWtkeBJWz2ebsJ-GN0,189
|
4
4
|
policyengine_uk/modelled_policies.yaml,sha256=TLhvmkuI9ip-Fjq63n66RzDErCkN8K4BzY6XLxLMtFg,463
|
5
5
|
policyengine_uk/repo.py,sha256=-dqpIMUD7UUj94ql9XwaMrFJUYKvNhFQ_9uj83Z8uh0,55
|
6
|
-
policyengine_uk/system.py,sha256=
|
6
|
+
policyengine_uk/system.py,sha256=sI2nqyNNPnzAkL8Rp2dAP_74SQ8CVjMB8gbqV0vF6E0,8944
|
7
7
|
policyengine_uk/data/__init__.py,sha256=9o7hH2qcHChfwDYq8Oqf2jE3b5WDS3TXJm3bf9VC4Ks,58
|
8
8
|
policyengine_uk/data/dataset_schema.py,sha256=kZuDKeBFBmK2B8MKWSAmDhHsTkzOY_WM5FnKcT8G4rA,3942
|
9
9
|
policyengine_uk/data/economic_assumptions.py,sha256=heEro-NYCszFzW-TJ3Vt3DUUrpDkysOpyvZVymJN3-8,5722
|
10
10
|
policyengine_uk/data/uprating_growth_factors.csv,sha256=6H5dq02mRsSgBJ9cYe4lut3fsvVzJXL20FvwT7SnlVc,10378
|
11
11
|
policyengine_uk/parameters/gov/README.md,sha256=bHUep1_2pLHD3Or8SwjStOWXDIbW9OuYxOd4ml8IXcM,13
|
12
|
-
policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml,sha256=
|
12
|
+
policyengine_uk/parameters/gov/benefit_uprating_cpi.yaml,sha256=2zOSdJeUhDZYYsKE2vLkcK-UbKNoOSVwfac0QIAp02g,250
|
13
13
|
policyengine_uk/parameters/gov/contrib/README.md,sha256=b282dmUFAmj7cXSfiMLyE81q5Y0Gnehy-6atLus-ESs,70
|
14
14
|
policyengine_uk/parameters/gov/contrib/abolish_council_tax.yaml,sha256=QwL8jKTMTk6GC0nxS0WNb482jAuSAA8uuWT0-D77UVc,149
|
15
15
|
policyengine_uk/parameters/gov/contrib/abolish_state_pension.yaml,sha256=mLI9_hOj9v__-znYIS1Zddj_BiOWWa0J2P_n-NjkOfw,129
|
@@ -312,6 +312,7 @@ policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/taxable_incom
|
|
312
312
|
policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/taxable_income_test/use_maximum_taxable_income.yaml,sha256=pHldHvNHeGhG0mcn7LvjYA3b-q_AxrAxm5bu-mkTn1A,261
|
313
313
|
policyengine_uk/parameters/gov/economic_assumptions/create_economic_assumption_indices.py,sha256=Z4dYghSit5gXo4V3wBpnLIc9zgTX4cfEyb_TUlJkTGY,1937
|
314
314
|
policyengine_uk/parameters/gov/economic_assumptions/lag_average_earnings.py,sha256=ksHcyUQkLAJmKizCeSg8j0hzPc7ajgIvbExWLgCra4U,701
|
315
|
+
policyengine_uk/parameters/gov/economic_assumptions/lag_cpi.py,sha256=IdtaMLN1_OSu-RFZsQV8vBlbOvXsPlnNlsOuinRHrxg,642
|
315
316
|
policyengine_uk/parameters/gov/economic_assumptions/yoy_growth.yaml,sha256=Vdd8sJJ29wjq0kin1cdy6fglwDTJ1bBXusVIuH0tpC0,8414
|
316
317
|
policyengine_uk/parameters/gov/hmrc/README.md,sha256=nkHVZl6lsjI93sR8uC7wAbul3_61wJrsP08iaW8f5lk,7
|
317
318
|
policyengine_uk/parameters/gov/hmrc/minimum_wage.yaml,sha256=1oMbevU0ESHR51mcAG39POd1DA1FgPUep4hL6ojj-P4,2049
|
@@ -527,7 +528,7 @@ policyengine_uk/reforms/policyengine/disable_simulated_benefits.py,sha256=siEs1E
|
|
527
528
|
policyengine_uk/tests/test_parameter_metadata.py,sha256=_2w2dSokAf5Jskye_KIL8eh80N7yIrUszlmqnZtwQws,450
|
528
529
|
policyengine_uk/tests/code_health/test_variables.py,sha256=9Y-KpmzhyRGy9eEqocK9z91NXHX5QIF3mDMNGvegb7Q,1398
|
529
530
|
policyengine_uk/tests/microsimulation/README.md,sha256=1toB1Z06ynlUielTrsAaeo9Vb-c3ZrB3tbbR4E1xUGk,3924
|
530
|
-
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=
|
531
|
+
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=_MXQn3I0fJmJ7M4xgbDAhSlGrIThBxXXY4i6E-JWTaQ,1086
|
531
532
|
policyengine_uk/tests/microsimulation/test_reform_impacts.py,sha256=xM3M2pclEhA9JIFpnuiPMy1fEBFOKcSzroRPk73FPls,2635
|
532
533
|
policyengine_uk/tests/microsimulation/test_validity.py,sha256=RWhbSKrnrZCNQRVmGYlM8hnpe1_Blo5_xP8vr8u3kV0,694
|
533
534
|
policyengine_uk/tests/microsimulation/update_reform_impacts.py,sha256=2pxp2RNLWxV4CesGKKHmg3qBs79Jq2Jcq3GJIBk4euU,4824
|
@@ -598,7 +599,7 @@ policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv_licence_discount.yaml,sha2
|
|
598
599
|
policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv-licence/tv_licence.yaml,sha256=cYAZlmmoAxWymv7L0lDzPcX6dexNAERQnVQMOB0HVzE,562
|
599
600
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn.yaml,sha256=i5RIghjT2T7uWn_xvaeYb2dIJ7JsreSr_f12UPtFqpg,508
|
600
601
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn_eligible.yaml,sha256=XPeMlYk3ibEpT6GgVzVk_IPnsTHLDzM4mlcru1jwA-k,3745
|
601
|
-
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml,sha256=
|
602
|
+
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml,sha256=y7FkeyrU7NQQbA_JZAkuGflWmyM4Cbh1a_fIQhXHQxM,4727
|
602
603
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_eligible.yaml,sha256=fE6Cm9K0xQsTWrFS90lrVa8pgwC8gdpGtmttBgLsZhw,4305
|
603
604
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_income_condition.yaml,sha256=5PihH858DmLIkWZTrDMuqF9X9PXCzejffjbKc_LhZPI,1250
|
604
605
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_work_condition.yaml,sha256=7KmrVQddB70kbtn2TbdJ8q2ER58H9GhAJmeak0sODoE,2300
|
@@ -705,7 +706,7 @@ policyengine_uk/variables/contrib/policyengine/pre_budget_change_ons_household_i
|
|
705
706
|
policyengine_uk/variables/contrib/policyengine/employer_ni/adjusted_employer_cost.py,sha256=ST8qa0iZssevjJEe5c2-3XJfxC6Z6mswsmu2dcaosC8,1479
|
706
707
|
policyengine_uk/variables/contrib/policyengine/employer_ni/baseline_employer_cost.py,sha256=3dvHkJubJcYkY5HspAWrS7bm81YiySbobUvwnjYF_qk,1849
|
707
708
|
policyengine_uk/variables/contrib/policyengine/employer_ni/employer_cost.py,sha256=C71cXMlFA-cI4EUPhQj9O2faaQJgQHxcwMQl27DujCY,666
|
708
|
-
policyengine_uk/variables/contrib/policyengine/employer_ni/employer_ni_fixed_employer_cost_change.py,sha256=
|
709
|
+
policyengine_uk/variables/contrib/policyengine/employer_ni/employer_ni_fixed_employer_cost_change.py,sha256=3iRuLqDtXZAIq_R_feqO-O7C17DzZBoTPGK5vIi9eVM,3568
|
709
710
|
policyengine_uk/variables/contrib/policyengine/employer_ni/employer_ni_response_capital_incidence.py,sha256=ikb5RQs6yT5GxfEjocB-YXLjdBMfCl0WK1RVrT8N8AE,1608
|
710
711
|
policyengine_uk/variables/contrib/policyengine/employer_ni/employer_ni_response_consumer_incidence.py,sha256=6ZmZ8LTOeCBRljK8t-Cpet1x5y2iS2C_MJFx6ECer8A,1645
|
711
712
|
policyengine_uk/variables/contrib/ubi_center/carbon_tax.py,sha256=sHmStTjRYK85zKI0GM5yb4ALAV8M1di9gybFvOowp10,940
|
@@ -1367,10 +1368,10 @@ policyengine_uk/variables/misc/spi_imputed.py,sha256=iPVlBF_TisM0rtKvO-3-PQ2UYCe
|
|
1367
1368
|
policyengine_uk/variables/misc/uc_migrated.py,sha256=zFNcUJaO8gwmbL1iY9GKgUt3G6J9yrCraqBV_5dCvlM,306
|
1368
1369
|
policyengine_uk/variables/misc/categories/lower_middle_or_higher.py,sha256=C54tHYz2DmOyvQYCC1bF8RJwRZinhAq_e3aYC-9F5fM,157
|
1369
1370
|
policyengine_uk/variables/misc/categories/lower_or_higher.py,sha256=81NIbLLabRr9NwjpUZDuV8IV8_mqmp5NM-CZvt55TwE,129
|
1370
|
-
policyengine_uk-2.38.
|
1371
|
-
policyengine_uk-2.38.
|
1372
|
-
policyengine_uk-2.38.
|
1373
|
-
policyengine_uk-2.38.
|
1374
|
-
policyengine_uk-2.38.
|
1375
|
-
policyengine_uk-2.38.
|
1376
|
-
policyengine_uk-2.38.
|
1371
|
+
policyengine_uk-2.38.2.data/data/share/openfisca/openfisca-country-template/CHANGELOG.md,sha256=B2f0l42Ja_hJhD5wUPojjmT0ZdaD5d5gVJ1ltXzgyyM,56114
|
1372
|
+
policyengine_uk-2.38.2.data/data/share/openfisca/openfisca-country-template/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1373
|
+
policyengine_uk-2.38.2.data/data/share/openfisca/openfisca-country-template/README.md,sha256=PCy7LRLdUDQS8U4PaeHeBVnyBZAqHv1dAVDDvEcom20,1976
|
1374
|
+
policyengine_uk-2.38.2.dist-info/METADATA,sha256=6QkMi09w7w4XLL3kZ1OHRMIUJm8qC2PzryZsiuBp5UA,3453
|
1375
|
+
policyengine_uk-2.38.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
1376
|
+
policyengine_uk-2.38.2.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1377
|
+
policyengine_uk-2.38.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|