PolicyEngine / PolicyEngine/policyengine-uk

Update 2026-27 Pension Credit guarantee rates

Open Beginner friendly
#1,740 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Python
Stars
50
Forks
33
Avg merge
20h 58m
Merged PRs (30d)
14

Description

PolicyEngine UK currently appears to use forecast-indexed 2026 Pension Credit guarantee rates instead of the published 2026-27 weekly amounts.

Repro with policyengine[uk]==4.11.0 (policyengine-uk@2.88.20):

from policyengine.tax_benefit_models.uk import uk_latest
for name in [
    "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.SINGLE",
    "gov.dwp.pension_credit.guarantee_credit.minimum_guarantee.COUPLE",
    "gov.dwp.pension_credit.guarantee_credit.carer.addition",
    "gov.dwp.pension_credit.guarantee_credit.severe_disability.addition",
]:
    for value in uk_latest.get_parameter(name).parameter_values:
        if value.start_date.year == 2026:
            print(name, value.value, value.start_date, value.end_date)

Actual 2026 values include:

  • minimum_guarantee.SINGLE: 229.3929826081932
  • minimum_guarantee.COUPLE: 350.12286608501375
  • carer.addition: 47.94659726635978
  • severe_disability.addition: 86.0813766865874

Published 2026-27 weekly rates are:

  • Standard minimum guarantee, single: 238.00
  • Standard minimum guarantee, couple: 363.25
  • Severe disability addition: 86.05 for one qualifying adult, 172.10 where both qualify
  • Carer addition: 48.15

Sources:

This surfaced while comparing Axiom RuleSpec UK against PolicyEngine over local Enhanced FRS. Positive-weight EFRS benunits imply weekly standard minimum guarantee values around 229.39 and 350.12, while the generated RuleSpec from the 2026 instrument returns 238.00 and 363.25.

Expected: update the Pension Credit guarantee parameters for 2026-27, with the correct April 2026 effective-date semantics.

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Locate the parameter definitions exposed through uk_latest for the four named Pension Credit guarantee parameters, then inspect how 2026 values and effective dates are represented. Compare them with the published 2026-27 weekly rates and verify the April 2026 effective-date semantics using the provided reproduction; done means all listed rates and dates match the published sources.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
data
Issue type
Bug
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Quiet
Clarity
Mostly clear
Newbie friendliness
68/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.