policyengine-uk 2.37.0__py3-none-any.whl → 2.38.1__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_average_earnings.py +28 -0
- policyengine_uk/parameters/gov/economic_assumptions/lag_cpi.py +27 -0
- policyengine_uk/parameters/gov/economic_assumptions/yoy_growth.yaml +55 -27
- policyengine_uk/system.py +8 -0
- policyengine_uk/tests/microsimulation/reforms_config.yaml +4 -4
- policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement.yaml +9 -9
- policyengine_uk/variables/household/consumption/benunit_rent.py +2 -2
- policyengine_uk/variables/input/consumption/property/council_tax.py +35 -1
- policyengine_uk/variables/input/consumption/property/housing_service_charges.py +1 -0
- policyengine_uk/variables/input/rent.py +40 -1
- {policyengine_uk-2.37.0.data → policyengine_uk-2.38.1.data}/data/share/openfisca/openfisca-country-template/CHANGELOG.md +14 -0
- {policyengine_uk-2.37.0.dist-info → policyengine_uk-2.38.1.dist-info}/METADATA +1 -1
- {policyengine_uk-2.37.0.dist-info → policyengine_uk-2.38.1.dist-info}/RECORD +18 -16
- {policyengine_uk-2.37.0.data → policyengine_uk-2.38.1.data}/data/share/openfisca/openfisca-country-template/LICENSE +0 -0
- {policyengine_uk-2.37.0.data → policyengine_uk-2.38.1.data}/data/share/openfisca/openfisca-country-template/README.md +0 -0
- {policyengine_uk-2.37.0.dist-info → policyengine_uk-2.38.1.dist-info}/WHEEL +0 -0
- {policyengine_uk-2.37.0.dist-info → policyengine_uk-2.38.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,28 @@
|
|
1
|
+
from policyengine_core.parameters import Parameter, ParameterNode
|
2
|
+
|
3
|
+
|
4
|
+
def add_lagged_earnings(
|
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
|
+
earnings = obr.average_earnings
|
12
|
+
|
13
|
+
lagged_earnings = Parameter(
|
14
|
+
"gov.economic_assumptions.yoy_growth.lagged_average_earnings",
|
15
|
+
data={
|
16
|
+
"values": {
|
17
|
+
f"{year}-01-01": earnings(year - 1)
|
18
|
+
for year in range(2022, 2030)
|
19
|
+
},
|
20
|
+
},
|
21
|
+
)
|
22
|
+
|
23
|
+
obr.add_child(
|
24
|
+
"lagged_average_earnings",
|
25
|
+
lagged_earnings,
|
26
|
+
)
|
27
|
+
|
28
|
+
return parameters
|
@@ -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
|
@@ -111,23 +111,52 @@ obr:
|
|
111
111
|
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
112
112
|
|
113
113
|
council_tax:
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
label: council tax growth
|
128
|
-
reference:
|
114
|
+
england:
|
115
|
+
description: Growth in the level (adjusted for household growth) of council tax receipts in England.
|
116
|
+
values:
|
117
|
+
2023-01-01: 0.051
|
118
|
+
2024-01-01: 0.051
|
119
|
+
2025-01-01: 0.043
|
120
|
+
2026-01-01: 0.043
|
121
|
+
2027-01-01: 0.043
|
122
|
+
2028-01-01: 0.043
|
123
|
+
2029-01-01: 0.043
|
124
|
+
metadata:
|
125
|
+
unit: /1
|
126
|
+
reference:
|
129
127
|
- title: OBR EFO March 2025
|
130
128
|
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
129
|
+
scotland:
|
130
|
+
description: Growth in the level (adjusted for household growth) of council tax receipts in Scotland.
|
131
|
+
values:
|
132
|
+
2023-01-01: 0.026
|
133
|
+
2024-01-01: 0.027
|
134
|
+
2025-01-01: 0.027
|
135
|
+
2026-01-01: 0.027
|
136
|
+
2027-01-01: 0.027
|
137
|
+
2028-01-01: 0.027
|
138
|
+
2029-01-01: 0.027
|
139
|
+
metadata:
|
140
|
+
unit: /1
|
141
|
+
reference:
|
142
|
+
- title: OBR EFO March 2025
|
143
|
+
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
144
|
+
wales:
|
145
|
+
description: Growth in the level (adjusted for household growth) of council tax receipts in Wales.
|
146
|
+
values:
|
147
|
+
2023-01-01: 0.038
|
148
|
+
2024-01-01: 0.041
|
149
|
+
2025-01-01: 0.041
|
150
|
+
2026-01-01: 0.041
|
151
|
+
2027-01-01: 0.041
|
152
|
+
2028-01-01: 0.041
|
153
|
+
2029-01-01: 0.041
|
154
|
+
metadata:
|
155
|
+
unit: /1
|
156
|
+
reference:
|
157
|
+
- title: OBR EFO March 2025
|
158
|
+
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
159
|
+
|
131
160
|
|
132
161
|
per_capita:
|
133
162
|
gdp:
|
@@ -225,21 +254,20 @@ obr:
|
|
225
254
|
- title: OBR EFO March 2025
|
226
255
|
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
227
256
|
|
228
|
-
|
229
|
-
description: Rent year-on-year growth.
|
257
|
+
social_rent:
|
258
|
+
description: Rent year-on-year growth (CPI+1%, one year lagged).
|
230
259
|
values:
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
2029-01-01: 0.024
|
260
|
+
2022-01-01: 0.050
|
261
|
+
2023-01-01: 0.110
|
262
|
+
2024-01-01: 0.067
|
263
|
+
2025-01-01: 0.033
|
264
|
+
2026-01-01: 0.042
|
265
|
+
2027-01-01: 0.029
|
266
|
+
2028-01-01: 0.030
|
267
|
+
2029-01-01: 0.030
|
240
268
|
metadata:
|
241
269
|
unit: /1
|
242
|
-
label: rent growth
|
270
|
+
label: social rent growth
|
243
271
|
reference:
|
244
272
|
- title: OBR EFO March 2025
|
245
273
|
href: https://obr.uk/efo/economic-and-fiscal-outlook-march-2025/
|
policyengine_uk/system.py
CHANGED
@@ -17,6 +17,12 @@ from policyengine_uk.utils.parameters import (
|
|
17
17
|
from policyengine_uk.parameters.gov.economic_assumptions.create_economic_assumption_indices import (
|
18
18
|
create_economic_assumption_indices,
|
19
19
|
)
|
20
|
+
from policyengine_uk.parameters.gov.economic_assumptions.lag_average_earnings import (
|
21
|
+
add_lagged_earnings,
|
22
|
+
)
|
23
|
+
from policyengine_uk.parameters.gov.economic_assumptions.lag_cpi import (
|
24
|
+
add_lagged_cpi,
|
25
|
+
)
|
20
26
|
from policyengine_core.reforms import Reform
|
21
27
|
from policyengine_uk.reforms import create_structural_reforms_from_parameters
|
22
28
|
|
@@ -61,6 +67,8 @@ class CountryTaxBenefitSystem(TaxBenefitSystem):
|
|
61
67
|
if reform:
|
62
68
|
self.apply_reform_set(reform)
|
63
69
|
self.parameters = add_private_pension_uprating_factor(self.parameters)
|
70
|
+
self.parameters = add_lagged_earnings(self.parameters)
|
71
|
+
self.parameters = add_lagged_cpi(self.parameters)
|
64
72
|
self.parameters = add_triple_lock(self.parameters)
|
65
73
|
self.parameters = create_economic_assumption_indices(self.parameters)
|
66
74
|
self.parameters.add_child("baseline", self.parameters.clone())
|
@@ -8,15 +8,15 @@ reforms:
|
|
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.2
|
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: -38.
|
19
|
+
expected_impact: -38.7
|
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%
|
@@ -28,6 +28,6 @@ reforms:
|
|
28
28
|
parameters:
|
29
29
|
gov.hmrc.vat.standard_rate: 0.22
|
30
30
|
- name: Raise additional rate by 3pp
|
31
|
-
expected_impact: 4.
|
31
|
+
expected_impact: 4.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,8 +5,8 @@ class benunit_rent(Variable):
|
|
5
5
|
value_type = float
|
6
6
|
entity = BenUnit
|
7
7
|
label = "Rent"
|
8
|
-
documentation = "Gross rent that members of this family are liable for"
|
8
|
+
documentation = "Gross rent that members of this family are liable for (social housing only)"
|
9
9
|
definition_period = YEAR
|
10
10
|
unit = GBP
|
11
|
-
|
11
|
+
uprating = "gov.economic_assumptions.indices.obr.social_rent"
|
12
12
|
adds = ["personal_rent"]
|
@@ -9,4 +9,38 @@ class council_tax(Variable):
|
|
9
9
|
definition_period = YEAR
|
10
10
|
unit = GBP
|
11
11
|
quantity_type = FLOW
|
12
|
-
|
12
|
+
|
13
|
+
def formula(household, period, parameters):
|
14
|
+
if period.start.year < 2023:
|
15
|
+
# We don't have growth rates for council tax by nation before this.
|
16
|
+
return 0
|
17
|
+
|
18
|
+
if household.simulation.dataset is None:
|
19
|
+
return 0
|
20
|
+
|
21
|
+
data_year = household.simulation.dataset.time_period
|
22
|
+
|
23
|
+
original_ct = household("council_tax", data_year)
|
24
|
+
|
25
|
+
ct = parameters.gov.economic_assumptions.indices.obr.council_tax
|
26
|
+
|
27
|
+
def get_growth(country):
|
28
|
+
param = getattr(ct, country)
|
29
|
+
return param(period.start.year) / param(data_year)
|
30
|
+
|
31
|
+
country = household("country", period).decode_to_str()
|
32
|
+
|
33
|
+
return select(
|
34
|
+
[
|
35
|
+
country == "ENGLAND",
|
36
|
+
country == "WALES",
|
37
|
+
country == "SCOTLAND",
|
38
|
+
True,
|
39
|
+
],
|
40
|
+
[
|
41
|
+
original_ct * get_growth("england"),
|
42
|
+
original_ct * get_growth("wales"),
|
43
|
+
original_ct * get_growth("scotland"),
|
44
|
+
original_ct,
|
45
|
+
],
|
46
|
+
)
|
@@ -11,4 +11,43 @@ class rent(Variable):
|
|
11
11
|
value_type = float
|
12
12
|
unit = GBP
|
13
13
|
quantity_type = FLOW
|
14
|
-
|
14
|
+
|
15
|
+
def formula(household, period, parameters):
|
16
|
+
if period.start.year < 2023:
|
17
|
+
# We don't have growth rates for rent before this.
|
18
|
+
return 0
|
19
|
+
|
20
|
+
if household.simulation.dataset is None:
|
21
|
+
return 0
|
22
|
+
|
23
|
+
data_year = household.simulation.dataset.time_period
|
24
|
+
original_rent = household("rent", data_year)
|
25
|
+
tenure_type = household("tenure_type", period).decode_to_str()
|
26
|
+
|
27
|
+
is_social_rent = (tenure_type == "RENT_FROM_COUNCIL") | (
|
28
|
+
tenure_type == "RENT_FROM_HA"
|
29
|
+
)
|
30
|
+
|
31
|
+
is_private_rent = tenure_type == "RENT_PRIVATELY"
|
32
|
+
|
33
|
+
obr = parameters.gov.economic_assumptions.indices.obr
|
34
|
+
|
35
|
+
private_rent_uprating = obr.lagged_average_earnings(
|
36
|
+
period
|
37
|
+
) / obr.lagged_average_earnings(data_year)
|
38
|
+
social_rent_uprating = obr.social_rent(period) / obr.social_rent(
|
39
|
+
data_year
|
40
|
+
)
|
41
|
+
|
42
|
+
return select(
|
43
|
+
[
|
44
|
+
is_social_rent,
|
45
|
+
is_private_rent,
|
46
|
+
True,
|
47
|
+
],
|
48
|
+
[
|
49
|
+
original_rent * social_rent_uprating,
|
50
|
+
original_rent * private_rent_uprating,
|
51
|
+
original_rent,
|
52
|
+
],
|
53
|
+
)
|
@@ -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.1] - 2025-07-14 15:03:33
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- Lag CPI correctly for benefit uprating.
|
13
|
+
|
14
|
+
## [2.38.0] - 2025-07-14 14:10:31
|
15
|
+
|
16
|
+
### Fixed
|
17
|
+
|
18
|
+
- Uprating for rent split by private and social rented sectors.
|
19
|
+
|
8
20
|
## [2.37.0] - 2025-07-14 10:36:08
|
9
21
|
|
10
22
|
### Added
|
@@ -1924,6 +1936,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
1924
1936
|
|
1925
1937
|
|
1926
1938
|
|
1939
|
+
[2.38.1]: https://github.com/PolicyEngine/openfisca-uk/compare/2.38.0...2.38.1
|
1940
|
+
[2.38.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.37.0...2.38.0
|
1927
1941
|
[2.37.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.36.1...2.37.0
|
1928
1942
|
[2.36.1]: https://github.com/PolicyEngine/openfisca-uk/compare/2.36.0...2.36.1
|
1929
1943
|
[2.36.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.35.1...2.36.0
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: policyengine-uk
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.38.1
|
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=G6O4qMhb7d9VWOtYFXlLdk48nvJLeP55Yyjd9YObDc4,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
|
@@ -311,7 +311,9 @@ policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/state_pension
|
|
311
311
|
policyengine_uk/parameters/gov/dwp/winter_fuel_payment/eligibility/taxable_income_test/maximum_taxable_income.yaml,sha256=gLj2M2zoCMPuZ-0UgNSf-FTA5I4CCXhxBsd3qVro7Ck,260
|
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
|
-
policyengine_uk/parameters/gov/economic_assumptions/
|
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
|
316
|
+
policyengine_uk/parameters/gov/economic_assumptions/yoy_growth.yaml,sha256=Vdd8sJJ29wjq0kin1cdy6fglwDTJ1bBXusVIuH0tpC0,8414
|
315
317
|
policyengine_uk/parameters/gov/hmrc/README.md,sha256=nkHVZl6lsjI93sR8uC7wAbul3_61wJrsP08iaW8f5lk,7
|
316
318
|
policyengine_uk/parameters/gov/hmrc/minimum_wage.yaml,sha256=1oMbevU0ESHR51mcAG39POd1DA1FgPUep4hL6ojj-P4,2049
|
317
319
|
policyengine_uk/parameters/gov/hmrc/business_rates/README.md,sha256=9ud50i_gMjGj6VymF-nzFDTzkFRMMJx6ybpLwbWzvpI,17
|
@@ -526,7 +528,7 @@ policyengine_uk/reforms/policyengine/disable_simulated_benefits.py,sha256=siEs1E
|
|
526
528
|
policyengine_uk/tests/test_parameter_metadata.py,sha256=_2w2dSokAf5Jskye_KIL8eh80N7yIrUszlmqnZtwQws,450
|
527
529
|
policyengine_uk/tests/code_health/test_variables.py,sha256=9Y-KpmzhyRGy9eEqocK9z91NXHX5QIF3mDMNGvegb7Q,1398
|
528
530
|
policyengine_uk/tests/microsimulation/README.md,sha256=1toB1Z06ynlUielTrsAaeo9Vb-c3ZrB3tbbR4E1xUGk,3924
|
529
|
-
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=
|
531
|
+
policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=ZOuJ4knFx-OKRUNeIfcv61sxgjjmXdBv9B_mcP19Hm4,1086
|
530
532
|
policyengine_uk/tests/microsimulation/test_reform_impacts.py,sha256=xM3M2pclEhA9JIFpnuiPMy1fEBFOKcSzroRPk73FPls,2635
|
531
533
|
policyengine_uk/tests/microsimulation/test_validity.py,sha256=RWhbSKrnrZCNQRVmGYlM8hnpe1_Blo5_xP8vr8u3kV0,694
|
532
534
|
policyengine_uk/tests/microsimulation/update_reform_impacts.py,sha256=2pxp2RNLWxV4CesGKKHmg3qBs79Jq2Jcq3GJIBk4euU,4824
|
@@ -597,7 +599,7 @@ policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv_licence_discount.yaml,sha2
|
|
597
599
|
policyengine_uk/tests/policy/baseline/gov/dcms/bbc/tv-licence/tv_licence.yaml,sha256=cYAZlmmoAxWymv7L0lDzPcX6dexNAERQnVQMOB0HVzE,562
|
598
600
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn.yaml,sha256=i5RIghjT2T7uWn_xvaeYb2dIJ7JsreSr_f12UPtFqpg,508
|
599
601
|
policyengine_uk/tests/policy/baseline/gov/dfe/care_to_learn/care_to_learn_eligible.yaml,sha256=XPeMlYk3ibEpT6GgVzVk_IPnsTHLDzM4mlcru1jwA-k,3745
|
600
|
-
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
|
601
603
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_eligible.yaml,sha256=fE6Cm9K0xQsTWrFS90lrVa8pgwC8gdpGtmttBgLsZhw,4305
|
602
604
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_income_condition.yaml,sha256=5PihH858DmLIkWZTrDMuqF9X9PXCzejffjbKc_LhZPI,1250
|
603
605
|
policyengine_uk/tests/policy/baseline/gov/dfe/extended_childcare_entitlement/extended_childcare_entitlement_work_condition.yaml,sha256=7KmrVQddB70kbtn2TbdJ8q2ER58H9GhAJmeak0sODoE,2300
|
@@ -1117,7 +1119,7 @@ policyengine_uk/variables/household/marginal_tax_rate.py,sha256=hK41cSc9i4QAnGBL
|
|
1117
1119
|
policyengine_uk/variables/household/region.py,sha256=swhjOMUg_crfDi4oEcJY7GoaiNQXfMsyDnJPAmMjp5U,456
|
1118
1120
|
policyengine_uk/variables/household/benefits/employment_benefits.py,sha256=Q3vdJv6MOTv4pIQkyOYhrfyztKV7t6kEAqIYssUNZw8,262
|
1119
1121
|
policyengine_uk/variables/household/consumption/additional_residential_property_purchased.py,sha256=lUd5VjLB2jysui8RuLEJCC4C4Yx0zDXlpybLUEUHuiU,742
|
1120
|
-
policyengine_uk/variables/household/consumption/benunit_rent.py,sha256=
|
1122
|
+
policyengine_uk/variables/household/consumption/benunit_rent.py,sha256=YuWfSkLsco5g0vneC40CtVJyPOZ1YRNMO5U2iHEwHSA,372
|
1121
1123
|
policyengine_uk/variables/household/consumption/carbon.py,sha256=OxxPoXG79fqWUG6y_PXHk45ysVzyr5wyzhA9i97y1eo,2018
|
1122
1124
|
policyengine_uk/variables/household/consumption/consumption_share.py,sha256=GK3HLuo6AihlGAetozl51P1SbibQZmRff-r_mqZPzqI,646
|
1123
1125
|
policyengine_uk/variables/household/consumption/council_tax_less_benefit.py,sha256=2yK564495I83xnM_2BTQ3qSietxc3CC2kO_KY6vrm4I,590
|
@@ -1324,7 +1326,7 @@ policyengine_uk/variables/input/pip_m_category.py,sha256=UfgnVrg5p5bR5n1jdcJb8qo
|
|
1324
1326
|
policyengine_uk/variables/input/private_pension_income.py,sha256=nquIdGsghUZtXY8nWCJM6qsd9zg9jCsuwiXPf3khYQk,473
|
1325
1327
|
policyengine_uk/variables/input/private_transfer_income.py,sha256=gS8QXT__YKCHAqQWrupujXTre-INgJftup4Y_IpZIqw,329
|
1326
1328
|
policyengine_uk/variables/input/property_income.py,sha256=o0JeFu77h9N8LWjlLDw55c8fRBrdcY5lWW_w0tGgnNA,413
|
1327
|
-
policyengine_uk/variables/input/rent.py,sha256=
|
1329
|
+
policyengine_uk/variables/input/rent.py,sha256=fUEjF0qkDfvniAPaT6FgoWlEVgH3fmIZuWcZlrYjVIQ,1521
|
1328
1330
|
policyengine_uk/variables/input/savings_interest_income.py,sha256=B8AXrGGPl4MI9nvBaOKI-QYdm35qwNSVQxtpNWEosHA,448
|
1329
1331
|
policyengine_uk/variables/input/self_employment_income.py,sha256=66eqP3jk3czOpmxA6wQOtsWM0Ll9lU2cw4_kuc7SgUA,492
|
1330
1332
|
policyengine_uk/variables/input/state_pension.py,sha256=o4LrBumOYadV-lZ6NC5-3lvafkLVJ_RNKjTrclQA0N4,957
|
@@ -1348,12 +1350,12 @@ policyengine_uk/variables/input/consumption/recreation_consumption.py,sha256=47I
|
|
1348
1350
|
policyengine_uk/variables/input/consumption/restaurants_and_hotels_consumption.py,sha256=plke30Xdy_zFvjqkXOhWtVdYqE8NfwMKnWaOD5n4IdM,464
|
1349
1351
|
policyengine_uk/variables/input/consumption/transport_consumption.py,sha256=5JfmRMpap6GOGZwl0PIRyUJvDaZrQyelEUE9z61GAfI,425
|
1350
1352
|
policyengine_uk/variables/input/consumption/property/README.md,sha256=IP9_pLLNXMHRMS5sEjRRqsM1nQMffQC2PJII-z-I6wI,11
|
1351
|
-
policyengine_uk/variables/input/consumption/property/council_tax.py,sha256=
|
1353
|
+
policyengine_uk/variables/input/consumption/property/council_tax.py,sha256=sGrFXHO9JWqlzChroCoZbQKnd2vhfysRVmeJxwg0zys,1360
|
1352
1354
|
policyengine_uk/variables/input/consumption/property/cumulative_non_residential_rent.py,sha256=rhqlRphsTMSx2Xij-B9RjSZeuLTjAyt3sx2VK66Nkf8,338
|
1353
1355
|
policyengine_uk/variables/input/consumption/property/cumulative_residential_rent.py,sha256=KMbISuubgfGaH34kJDe_tfOsKzVUHSJneDhyd-fLeI4,326
|
1354
1356
|
policyengine_uk/variables/input/consumption/property/employee_pension_contributions.py,sha256=J8Ead71hjCZ0vktrl9MbMMgsPCWsdPWSTbVPsVYkgcU,293
|
1355
1357
|
policyengine_uk/variables/input/consumption/property/employer_pension_contributions.py,sha256=tnhLfxtpBPaKnrOPBxGh_ZEYbnktPoauJe2yiTc1iro,368
|
1356
|
-
policyengine_uk/variables/input/consumption/property/housing_service_charges.py,sha256=
|
1358
|
+
policyengine_uk/variables/input/consumption/property/housing_service_charges.py,sha256=HNpFGk4AUGy6AbLdookVPOCgu67jv59KzWDFOkANCX4,357
|
1357
1359
|
policyengine_uk/variables/input/consumption/property/maintenance_expenses.py,sha256=AlOm8_QM08uQfiyE8TAdLKWNRS6eOinnySwCcmD0iaI,277
|
1358
1360
|
policyengine_uk/variables/input/consumption/property/mortgage_capital_repayment.py,sha256=LN_9rWK7k0LfxJy1nTSCizT-xOVn2YiufQHqJdG0rfU,287
|
1359
1361
|
policyengine_uk/variables/input/consumption/property/mortgage_interest_repayment.py,sha256=v13s6wjO--fZmyRLFwQqeHrbYjTObjVTdV04E1S5sn0,365
|
@@ -1366,10 +1368,10 @@ policyengine_uk/variables/misc/spi_imputed.py,sha256=iPVlBF_TisM0rtKvO-3-PQ2UYCe
|
|
1366
1368
|
policyengine_uk/variables/misc/uc_migrated.py,sha256=zFNcUJaO8gwmbL1iY9GKgUt3G6J9yrCraqBV_5dCvlM,306
|
1367
1369
|
policyengine_uk/variables/misc/categories/lower_middle_or_higher.py,sha256=C54tHYz2DmOyvQYCC1bF8RJwRZinhAq_e3aYC-9F5fM,157
|
1368
1370
|
policyengine_uk/variables/misc/categories/lower_or_higher.py,sha256=81NIbLLabRr9NwjpUZDuV8IV8_mqmp5NM-CZvt55TwE,129
|
1369
|
-
policyengine_uk-2.
|
1370
|
-
policyengine_uk-2.
|
1371
|
-
policyengine_uk-2.
|
1372
|
-
policyengine_uk-2.
|
1373
|
-
policyengine_uk-2.
|
1374
|
-
policyengine_uk-2.
|
1375
|
-
policyengine_uk-2.
|
1371
|
+
policyengine_uk-2.38.1.data/data/share/openfisca/openfisca-country-template/CHANGELOG.md,sha256=AwdgxpvxANkRyG-j1hdhXYKqnQT_hTqaH8HJhW1CWc4,55895
|
1372
|
+
policyengine_uk-2.38.1.data/data/share/openfisca/openfisca-country-template/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1373
|
+
policyengine_uk-2.38.1.data/data/share/openfisca/openfisca-country-template/README.md,sha256=PCy7LRLdUDQS8U4PaeHeBVnyBZAqHv1dAVDDvEcom20,1976
|
1374
|
+
policyengine_uk-2.38.1.dist-info/METADATA,sha256=s7CTmc0OPq4_8UInf-onN-NYdjhRtdhncAAG9z2shW4,3453
|
1375
|
+
policyengine_uk-2.38.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
1376
|
+
policyengine_uk-2.38.1.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
|
1377
|
+
policyengine_uk-2.38.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|