From c3f0f3022b69acd9e5b7afbf340c90be1d47b13b Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Thu, 4 Apr 2024 20:04:23 +1100 Subject: [PATCH] austax: Add Medicare levy threshold for FY23-24 --- austax/tax_tables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/austax/tax_tables.py b/austax/tax_tables.py index 8573f15..83c6a00 100644 --- a/austax/tax_tables.py +++ b/austax/tax_tables.py @@ -86,6 +86,7 @@ repayment_rates = { # https://www.ato.gov.au/Individuals/Medicare-and-private-health-insurance/Medicare-levy/Medicare-levy-reduction/Medicare-levy-reduction-for-low-income-earners/ # Maps each financial year to list of (lower threshold, upper threshold) medicare_levy_threshold = { + 2024: (26000, 32500), # Treasury Laws Amendment (Cost of Living—Medicare Levy) Act 2024 2023: (24276, 30345), 2022: (23365, 29207) }