policyengine-uk 2.43.4__py3-none-any.whl → 2.44.0__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.

Potentially problematic release.


This version of policyengine-uk might be problematic. Click here for more details.

@@ -53,6 +53,7 @@ class UKSingleYearDataset:
53
53
  household: pd.DataFrame = None,
54
54
  fiscal_year: int = 2025,
55
55
  ):
56
+ file_path = str(file_path) if file_path else None
56
57
  if file_path is not None:
57
58
  self.validate_file_path(file_path)
58
59
  with pd.HDFStore(file_path) as f:
@@ -0,0 +1,9 @@
1
+ description: Whether the Universal Credit 'rebalancing' reforms are active.
2
+ values:
3
+ 2025-01-01: true
4
+ metadata:
5
+ unit: bool
6
+ label: Universal Credit rebalancing reforms active
7
+ reference:
8
+ - title: Universal Credit Bill
9
+ href: https://bills.parliament.uk/publications/62123/documents/6889
@@ -0,0 +1,9 @@
1
+ description: Monthly value of the Universal Credit health element for new claimants from April 2026.
2
+ values:
3
+ 2026-01-01: 217.26
4
+ metadata:
5
+ unit: currency-GBP
6
+ label: Universal Credit new claimant health element amount
7
+ reference:
8
+ - title: Universal Credit Bill
9
+ href: https://bills.parliament.uk/publications/62123/documents/6889#page=16
@@ -0,0 +1,13 @@
1
+ description: Uplift in the Standard Allowance for Universal Credit, in addition to the annual inflationary increase, compared to 2025-26 levels.
2
+ values:
3
+ 2025-01-01: 0.000
4
+ 2026-01-01: 0.023
5
+ 2027-01-01: 0.031
6
+ 2028-01-01: 0.040
7
+ 2029-01-01: 0.048
8
+ metadata:
9
+ unit: /1
10
+ label: Universal Credit rebalancing standard allowance uplift
11
+ reference:
12
+ - title: Universal Credit Bill
13
+ href: https://bills.parliament.uk/publications/62123/documents/6889
@@ -34,7 +34,6 @@ def adjust_budgets(parameters, period):
34
34
 
35
35
  class adjust_budgets_reform(Reform):
36
36
  def apply(self):
37
-
38
37
  for reform in reforms:
39
38
  reform.apply(self)
40
39
 
@@ -1,3 +1,4 @@
1
1
  from .pip_reform import reform_pip_phase_in
2
2
  from .reindex_benefit_cap import reindex_benefit_cap
3
3
  from .repeal_two_child_limit import repeal_two_child_limit
4
+ from .uc_reform import universal_credit_july_2025_reform
@@ -0,0 +1,48 @@
1
+ from policyengine_uk.model_api import Scenario
2
+ from policyengine_uk import Microsimulation
3
+ import numpy as np
4
+
5
+
6
+ def add_universal_credit_reform(sim: Microsimulation):
7
+ rebalancing = (
8
+ sim.tax_benefit_system.parameters.gov.dwp.universal_credit.rebalancing
9
+ )
10
+
11
+ uc_seed = np.random.random(len(sim.calculate("benunit_id")))
12
+ p_uc_post_2026_status = {
13
+ 2025: 0,
14
+ 2026: 0.11,
15
+ 2027: 0.13,
16
+ 2028: 0.16,
17
+ 2029: 0.22,
18
+ } # WPI Economics for Trussell Trust based on admin PIP data, 2025
19
+ new_claimant_health_element = rebalancing.new_claimant_health_element
20
+ for year in range(2026, 2030):
21
+ if not rebalancing.active(year):
22
+ continue
23
+ is_post_25_claimant = uc_seed < p_uc_post_2026_status[year]
24
+ current_health_element = sim.calculate("uc_LCWRA_element", year)
25
+ # Set new claimants to £217.26/month from April 2026 (pre-2026 claimaints keep inflation-linked increases)
26
+ # https://bills.parliament.uk/publications/62123/documents/6889#page=16
27
+ current_health_element[
28
+ (current_health_element > 0) & is_post_25_claimant
29
+ ] = (
30
+ new_claimant_health_element(year) * 12
31
+ ) # Monthly amount * 12
32
+ sim.set_input("uc_LCWRA_element", year, current_health_element)
33
+
34
+ # https://bills.parliament.uk/publications/62123/documents/6889#page=14
35
+
36
+ uc_uplift = rebalancing.standard_allowance_uplift
37
+
38
+ for year in range(2026, 2030):
39
+ if not rebalancing.active(year):
40
+ continue
41
+ previous_value = sim.calculate("uc_standard_allowance", year - 1)
42
+ new_value = previous_value * (1 + uc_uplift(year))
43
+ sim.set_input("uc_standard_allowance", year, new_value)
44
+
45
+
46
+ universal_credit_july_2025_reform = Scenario(
47
+ simulation_modifier=add_universal_credit_reform,
48
+ )
@@ -109,6 +109,12 @@ class Simulation(CoreSimulation):
109
109
 
110
110
  self.input_variables = self.get_known_variables()
111
111
 
112
+ # Universal Credit reform (July 2025). Needs closer integration in the baseline,
113
+ # but adding here for ease of toggling on/off via the 'active' parameter.
114
+ from policyengine_uk.scenarios import universal_credit_july_2025_reform
115
+
116
+ universal_credit_july_2025_reform.simulation_modifier(self)
117
+
112
118
  # Apply structural modifiers
113
119
 
114
120
  if scenario is not None:
@@ -198,6 +204,7 @@ class Simulation(CoreSimulation):
198
204
  else:
199
205
  dataset = Dataset.from_file(dataset, self.default_input_period)
200
206
  self.build_from_dataset(dataset)
207
+ self.dataset = dataset
201
208
 
202
209
  def build_from_dataframe(self, df: pd.DataFrame) -> None:
203
210
  """Build simulation from a pandas DataFrame.
@@ -308,6 +315,7 @@ class Simulation(CoreSimulation):
308
315
 
309
316
  dataset = extend_single_year_dataset(dataset)
310
317
  self.build_from_multi_year_dataset(dataset)
318
+ self.dataset = dataset
311
319
 
312
320
  def build_from_multi_year_dataset(
313
321
  self, dataset: UKMultiYearDataset
@@ -335,6 +343,8 @@ class Simulation(CoreSimulation):
335
343
  continue
336
344
  self.set_input(variable, year, table[variable])
337
345
 
346
+ self.dataset = dataset
347
+
338
348
  def build_from_ids(
339
349
  self,
340
350
  person_id: np.ndarray,
@@ -16,7 +16,7 @@ reforms:
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.4
19
+ expected_impact: -39.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%
@@ -47,7 +47,6 @@ def create_modified_cpi_forecast(
47
47
  forecast_start_year=2025,
48
48
  forecast_end_year=2029,
49
49
  ):
50
-
51
50
  cpi_values = get_parameter_values(
52
51
  cpi_parameter, forecast_start_year, forecast_end_year
53
52
  )
@@ -20,5 +20,5 @@ for year in range(START_YEAR, 2029):
20
20
  triple_lock_increase = max(earnings_increase, cpi_increase, 1.025)
21
21
  lock_value *= triple_lock_increase
22
22
  print(
23
- f" {year}-01-01: {lock_value:.3f} # Earnings increase FY{year - 1}/{year - 2} = {earnings_increase-1:.1%}, CPI increase FY{year - 1}/{year - 2} = {cpi_increase-1:.1%}"
23
+ f" {year}-01-01: {lock_value:.3f} # Earnings increase FY{year - 1}/{year - 2} = {earnings_increase - 1:.1%}, CPI increase FY{year - 1}/{year - 2} = {cpi_increase - 1:.1%}"
24
24
  )
@@ -194,7 +194,6 @@ from IPython.core.display import HTML, display_html
194
194
 
195
195
 
196
196
  def format_fig(fig):
197
-
198
197
  # PolicyEngine style (roboto mono for numbers, roboto serif for text), dark grey for negative, blue for positive, spacing, etc.
199
198
 
200
199
  # Set layout properties for a clean, professional look
@@ -165,7 +165,9 @@ class Scenario(BaseModel):
165
165
  else:
166
166
  # Simple parameter change
167
167
  simulation.tax_benefit_system.parameters.update(
168
- path, period=None, value=value # Apply to all periods
168
+ path,
169
+ period=None,
170
+ value=value, # Apply to all periods
169
171
  )
170
172
 
171
173
  # Then apply simulation modifier
@@ -8,7 +8,6 @@ class education_budget_change(Variable):
8
8
  value_type = float
9
9
 
10
10
  def formula(household, period, parameters):
11
-
12
11
  budget_increase = (
13
12
  parameters(period).gov.contrib.policyengine.budget.education * 1e9
14
13
  )
@@ -8,7 +8,6 @@ class other_public_spending_budget_change(Variable):
8
8
  value_type = float
9
9
 
10
10
  def formula(household, period, parameters):
11
-
12
11
  budget_increase = (
13
12
  parameters(
14
13
  period
@@ -9,7 +9,6 @@ class targeted_childcare_entitlement_eligible(Variable):
9
9
  defined_for = "would_claim_targeted_childcare"
10
10
 
11
11
  def formula(benunit, period, parameters):
12
-
13
12
  # Check if household is in England
14
13
  country = benunit.household("country", period)
15
14
  in_england = country == country.possible_values.ENGLAND
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: policyengine-uk
3
- Version: 2.43.4
3
+ Version: 2.44.0
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,11 +3,11 @@ policyengine_uk/entities.py,sha256=9yUbkUWQr3WydNE-gHhUudG97HGyXIZY3dkgQ6Z3t9A,1
3
3
  policyengine_uk/microsimulation.py,sha256=k2u8v6TlHiu8hO5gCjd8-qOsfzorCnjrKfnvs8cbGOc,2676
4
4
  policyengine_uk/model_api.py,sha256=KdwJCL2HkXVxDpL6fCsCnQ9Sub6Kqp7Hyxlis3MNIx4,241
5
5
  policyengine_uk/modelled_policies.yaml,sha256=TLhvmkuI9ip-Fjq63n66RzDErCkN8K4BzY6XLxLMtFg,463
6
- policyengine_uk/simulation.py,sha256=Cibz4giX9Ue7j7IqqBFwUkUKhhBvH9RpjAQ4eIDWUK8,14738
6
+ policyengine_uk/simulation.py,sha256=OSozr0-Uk9Itz8feSi5SKkq-NZOhGCbN6QT4XDIrwKU,15157
7
7
  policyengine_uk/system.py,sha256=Z-ax_ImUq5k4tycuThczTxQNW5iTE6ikBJIBQdKfIzU,91
8
8
  policyengine_uk/tax_benefit_system.py,sha256=7cahlxO7v-SzmyYSsteklCpkMuFOyOMomcYeh0LoRK8,4762
9
9
  policyengine_uk/data/__init__.py,sha256=J0bZ3WnvPzZ4qfVLYcwOc4lziMUMdbcMqJ3xwjoekbM,101
10
- policyengine_uk/data/dataset_schema.py,sha256=4SPUqDmzTsmmWFaJIlpDzT7J6WvBDgxRPfUnbjjtFuQ,9854
10
+ policyengine_uk/data/dataset_schema.py,sha256=e4ST_kHSdlwX7Fd8rO5MRr2kXMejIJGXb0mUlKlVnEE,9912
11
11
  policyengine_uk/data/economic_assumptions.py,sha256=4ZmE6z8Bbf21n0Hm-IpsS04Astg2NJAypv9TdA_udEk,6189
12
12
  policyengine_uk/data/uprating_indices.yaml,sha256=kQtfeGWyqge4dbJhs0iF4kTMqovuegill_Zfs8orJi4,2394
13
13
  policyengine_uk/parameters/gov/README.md,sha256=bHUep1_2pLHD3Or8SwjStOWXDIbW9OuYxOd4ml8IXcM,13
@@ -302,6 +302,9 @@ policyengine_uk/parameters/gov/dwp/universal_credit/means_test/income_definition
302
302
  policyengine_uk/parameters/gov/dwp/universal_credit/means_test/income_definitions/unearned.yaml,sha256=BN6ew8R3bi7c25X6pR0HpDBpCYMtr2i84GsJGHHtCM4,506
303
303
  policyengine_uk/parameters/gov/dwp/universal_credit/means_test/work_allowance/with_housing.yaml,sha256=4ZIrkFwhn7eOBYgmPpsF2d-lH1PDahLJCILrzjxQmN8,623
304
304
  policyengine_uk/parameters/gov/dwp/universal_credit/means_test/work_allowance/without_housing.yaml,sha256=WvyXxHKwJoLeQvEIKl29UydSGvH4Nyrohy1OzRzTwBk,625
305
+ policyengine_uk/parameters/gov/dwp/universal_credit/rebalancing/active.yaml,sha256=jqOMbKtNkYywcYV8YDoQ_wCtMkc-F_c_GQOysLnHDys,300
306
+ policyengine_uk/parameters/gov/dwp/universal_credit/rebalancing/new_claimant_health_element.yaml,sha256=wEf3Z_zw-Pd6E6BNux245WWK4UxtF1M7mR5Ed6Zg-tw,351
307
+ policyengine_uk/parameters/gov/dwp/universal_credit/rebalancing/standard_allowance_uplift.yaml,sha256=cvfCM8icf8gCpECuMBlcL246oBTmlo2aYzKnSdhP1lE,460
305
308
  policyengine_uk/parameters/gov/dwp/universal_credit/standard_allowance/README.md,sha256=ICHmqjTj9yNBCs7RM32ieLIIVO2rngxRNThJAyWRta4,21
306
309
  policyengine_uk/parameters/gov/dwp/universal_credit/standard_allowance/amount.yaml,sha256=WV3uxVU1g-3hg9qpIGUEHSyXlsZfdUP1pRHfd5vEUfs,2851
307
310
  policyengine_uk/parameters/gov/dwp/universal_credit/standard_allowance/claimant_type/age_threshold.yaml,sha256=ht8INWpdP6S6emk18z23dsdLluVV4OqYrZ7IARn3vjY,397
@@ -526,16 +529,17 @@ policyengine_uk/reforms/conservatives/household_based_hitc.py,sha256=txUC-qiS7RB
526
529
  policyengine_uk/reforms/cps/__init__.py,sha256=6S2fKVYEHGVkktwFEm-d56EKGN8vp_BjCUOPMkTXq5Y,61
527
530
  policyengine_uk/reforms/cps/marriage_tax_reforms.py,sha256=UK7fTMoa4Xh2IvkT3wRDwoPcMkV3p8_bXlYkDMGnAPQ,9556
528
531
  policyengine_uk/reforms/policyengine/__init__.py,sha256=5ubEO0DGRBXhn3QRSoBNT-jff9ORb4dd2J6FYNpSEik,42
529
- policyengine_uk/reforms/policyengine/adjust_budgets.py,sha256=p1NbFB7wwfC_jRdeVLbClHm3MOvRO-gKmU7PzY2zJv8,2084
532
+ policyengine_uk/reforms/policyengine/adjust_budgets.py,sha256=ac3NhyhTd6LXeJkOQxL3m6dc054WP5fIsoUVNqnqbTM,2083
530
533
  policyengine_uk/reforms/policyengine/disable_simulated_benefits.py,sha256=siEs1EpSHCm5-4CJKwGdDm9jArscd6kVM39JUrFTPlE,2524
531
- policyengine_uk/scenarios/__init__.py,sha256=_Ci6FeBm6tEiv5LUVsn70ubBftSFlaNZXcc--epBdQM,156
534
+ policyengine_uk/scenarios/__init__.py,sha256=OP_05x7RS8qUuwEN6tqoTGwrpk8vYLxCSavgueUlpIc,213
532
535
  policyengine_uk/scenarios/pip_reform.py,sha256=fv6-HCuRxhzt-XEYv9yLJTEliAWu3EGx6duADSBO4n8,687
533
536
  policyengine_uk/scenarios/reindex_benefit_cap.py,sha256=dPUOsTkgYZNRN15e_ax5hg5ObHngk5tizz7FYStkGaE,1070
534
537
  policyengine_uk/scenarios/repeal_two_child_limit.py,sha256=vZndQVFNCe7v7k4v-PgneOCPld-YTnCmlveRbX_1czk,250
538
+ policyengine_uk/scenarios/uc_reform.py,sha256=WPYKGBY_V7A0pQPxDM0lOYTR9GoLrF-iEm_8aXg5fXU,1840
535
539
  policyengine_uk/tests/test_parameter_metadata.py,sha256=_2w2dSokAf5Jskye_KIL8eh80N7yIrUszlmqnZtwQws,450
536
540
  policyengine_uk/tests/code_health/test_variables.py,sha256=9Y-KpmzhyRGy9eEqocK9z91NXHX5QIF3mDMNGvegb7Q,1398
537
541
  policyengine_uk/tests/microsimulation/README.md,sha256=1toB1Z06ynlUielTrsAaeo9Vb-c3ZrB3tbbR4E1xUGk,3924
538
- policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=qIxLo33i7qAAkCc6Pvpa-rhWTxoevrbOlsADjF-w7pk,1086
542
+ policyengine_uk/tests/microsimulation/reforms_config.yaml,sha256=QShPK-XzuTQcyxc4j16RCUJYPV--BCe_-AyRNQfyvPY,1086
539
543
  policyengine_uk/tests/microsimulation/test_reform_impacts.py,sha256=xM3M2pclEhA9JIFpnuiPMy1fEBFOKcSzroRPk73FPls,2635
540
544
  policyengine_uk/tests/microsimulation/test_validity.py,sha256=RWhbSKrnrZCNQRVmGYlM8hnpe1_Blo5_xP8vr8u3kV0,694
541
545
  policyengine_uk/tests/microsimulation/update_reform_impacts.py,sha256=2pxp2RNLWxV4CesGKKHmg3qBs79Jq2Jcq3GJIBk4euU,4824
@@ -690,11 +694,11 @@ policyengine_uk/tests/policy/reforms/parametric/two_child_limit/age_exemption.ya
690
694
  policyengine_uk/tests/policy/reforms/parametric/two_child_limit/ctc_age_exemption.yaml,sha256=xOgctFi4eLVW7agHdRPUU9szoRzt4p0R9eiMvPqwv_s,3577
691
695
  policyengine_uk/tests/policy/reforms/parametric/winter_fuel_allowance/taxable_income_test.yaml,sha256=QY3LYJ92VzYH9mXU54XD_6PhefwHNK80kGYQ0R5I0SM,6289
692
696
  policyengine_uk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
693
- policyengine_uk/utils/create_ahc_deflator.py,sha256=zCJ_R_hq8DUfuO7u3puhRl6gkC1hw2MX3TCusy-bICI,5464
694
- policyengine_uk/utils/create_triple_lock.py,sha256=E8qR51cq5jPL6EOXFoPi1qJhrcUBXg3dfWTvdqWN2Bo,948
695
- policyengine_uk/utils/dependencies.py,sha256=6mLDZr-lypI6RZMeb0rcWoJy5Ig7QT18kOuAMUgI7vg,8198
697
+ policyengine_uk/utils/create_ahc_deflator.py,sha256=7GvhywFiUMSsh0syBd-A2MVBr-HU6t4RIuqSgMTyZEw,5463
698
+ policyengine_uk/utils/create_triple_lock.py,sha256=-LpKwztjcDaNYd3RpnMiwxAm48RWsvw0NY9wG6gXIYw,952
699
+ policyengine_uk/utils/dependencies.py,sha256=8epKWmZBeHnxqh3j0sb-Wl3Of_OdKNX-p1syLowUcWs,8197
696
700
  policyengine_uk/utils/parameters.py,sha256=OQTzTkHMdwbphCo0mV7_n_FJT0rdwIKNFTsk_lsdETE,1301
697
- policyengine_uk/utils/scenario.py,sha256=xvWjv7WViH6NxqQF5RUECXtIWYktploOn-0kPYC3rXM,6702
701
+ policyengine_uk/utils/scenario.py,sha256=snA0HNfHqMQGjB35vo0hns4dPduCImGPvlGVAXxx85M,6751
698
702
  policyengine_uk/utils/solve_private_school_attendance_factor.py,sha256=LUZCgHKAQTY5qHlGJutn7pOFUWT0AP16YcJy-YUjQ3Q,1609
699
703
  policyengine_uk/utils/water/README.md,sha256=sdBI-JZ-jcRoSUfwNx5wjv5Ig_nM8OPvvjSsSMs_Wh8,443
700
704
  policyengine_uk/utils/water/forecast_water_bills.py,sha256=B4vtfJuR8XfBP-KHGyhRp2Oo7X7buN-lDH6tBIXqE2U,2788
@@ -703,10 +707,10 @@ policyengine_uk/variables/contrib/labour/attends_private_school.py,sha256=OfTnVc
703
707
  policyengine_uk/variables/contrib/labour/private_school_vat.py,sha256=IF1XfNNYFuYPiZd4HiGF4aAiPcY1_vGA_nAgTW7M2wg,851
704
708
  policyengine_uk/variables/contrib/policyengine/consumer_incident_tax_revenue_change.py,sha256=b8_dTgmqLqEjxL9rJbHuIKqttcoP3nmdX6Jr46XpEjY,825
705
709
  policyengine_uk/variables/contrib/policyengine/corporate_incident_tax_revenue_change.py,sha256=HnsGLkpUZWI-ITs6nhvi-avOBbekMLhFghjuLuQMVIQ,510
706
- policyengine_uk/variables/contrib/policyengine/education_budget_change.py,sha256=iQf3GBnctyqwjSEeBNcYuUX9nIwLm8AKIwT8JKobCFg,1467
710
+ policyengine_uk/variables/contrib/policyengine/education_budget_change.py,sha256=LBVk5exhxqfbdT2BOur4cewTeOr04g60oSuwUPahsuM,1466
707
711
  policyengine_uk/variables/contrib/policyengine/high_income_incident_tax_change.py,sha256=T-CPp_frU3jUYQJvyKEUgK8WL0f0aBMOR70blVOrzk4,775
708
712
  policyengine_uk/variables/contrib/policyengine/nhs_budget_change.py,sha256=Z5k9jgiR_yi62Et_qhPU83Z5Pv6fDSbGhRVzNesMPyQ,1448
709
- policyengine_uk/variables/contrib/policyengine/other_public_spending_budget_change.py,sha256=jPCvxuaX7PWYlbKS046K-_gqO-2kWRfed6EvJfc7mYc,1528
713
+ policyengine_uk/variables/contrib/policyengine/other_public_spending_budget_change.py,sha256=xz2lUFKS54BYoSrrBdp3UhY1TYQeqsuwaDsliGzEHqA,1527
710
714
  policyengine_uk/variables/contrib/policyengine/pre_budget_change_household_benefits.py,sha256=1nWJ42sO57AkhF6UaF7VyCY9rqATQND1njlhtpPC398,2063
711
715
  policyengine_uk/variables/contrib/policyengine/pre_budget_change_household_net_income.py,sha256=tQCnxQIXv4IkkYZYyJ7-5vLsbBn1J_W8rjmJlbbdbnY,397
712
716
  policyengine_uk/variables/contrib/policyengine/pre_budget_change_household_tax.py,sha256=ug0AjfDVm_KTymDL2DKOklwVVgW-Ug416yCOrm1YPbU,1184
@@ -752,7 +756,7 @@ policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/is_child_receiv
752
756
  policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/meets_tax_credit_criteria_for_targeted_childcare_entitlement.py,sha256=xjF4ZtwOFf2238v4Dz2IbhhCpu3DSHU2ivLhPva-17Y,1076
753
757
  policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/meets_universal_credit_criteria_for_targeted_childcare_entitlement.py,sha256=CsAMpkWkHXFEi4Y87Je-EJQPo2ZVxLZtMFqXTKqHWwg,1009
754
758
  policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/targeted_childcare_entitlement.py,sha256=uNzqhSiwjVa00zNHrMFlru9lVeCd3YG_zIj4JJXshD4,917
755
- policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/targeted_childcare_entitlement_eligible.py,sha256=QugQTtckbPEEiXZQd1exxFBz4PRlagSKH5Lf9Hany4g,1451
759
+ policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/targeted_childcare_entitlement_eligible.py,sha256=iYIbHrGeH3n37LDEDn-Qgg7w1g65s3m2s0PDY7FT6Ag,1450
756
760
  policyengine_uk/variables/gov/dfe/targeted_childcare_entitlement/would_claim_targeted_childcare.py,sha256=9ikBldqXmnj1dAP6liDDjY7XWsiNwHSs0gFTIYEQLpk,341
757
761
  policyengine_uk/variables/gov/dfe/universal_childcare_entitlement/is_child_receiving_universal_childcare.py,sha256=62LdI599nwX9bdUrJpW8iJbD-1-7fRCZlCBPcEUr4NU,958
758
762
  policyengine_uk/variables/gov/dfe/universal_childcare_entitlement/universal_childcare_entitlement.py,sha256=muYlzgZlFkI6D6zslfDzCSQkBGSTWSStYE_d6sdFemg,766
@@ -1376,7 +1380,7 @@ policyengine_uk/variables/misc/spi_imputed.py,sha256=iPVlBF_TisM0rtKvO-3-PQ2UYCe
1376
1380
  policyengine_uk/variables/misc/uc_migrated.py,sha256=zFNcUJaO8gwmbL1iY9GKgUt3G6J9yrCraqBV_5dCvlM,306
1377
1381
  policyengine_uk/variables/misc/categories/lower_middle_or_higher.py,sha256=C54tHYz2DmOyvQYCC1bF8RJwRZinhAq_e3aYC-9F5fM,157
1378
1382
  policyengine_uk/variables/misc/categories/lower_or_higher.py,sha256=81NIbLLabRr9NwjpUZDuV8IV8_mqmp5NM-CZvt55TwE,129
1379
- policyengine_uk-2.43.4.dist-info/METADATA,sha256=zSNA8LoZZDX4ZBX_hWyz2W7EcCAfTV6_oaEnfdyBkKk,3919
1380
- policyengine_uk-2.43.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1381
- policyengine_uk-2.43.4.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
1382
- policyengine_uk-2.43.4.dist-info/RECORD,,
1383
+ policyengine_uk-2.44.0.dist-info/METADATA,sha256=EH2l50ysvGNyLPZZV7IVSao0dYupOjGYUrlDTZLIRw4,3919
1384
+ policyengine_uk-2.44.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
1385
+ policyengine_uk-2.44.0.dist-info/licenses/LICENSE,sha256=dql8h4yceoMhuzlcK0TT_i-NgTFNIZsgE47Q4t3dUYI,34520
1386
+ policyengine_uk-2.44.0.dist-info/RECORD,,