From fb58222adddfc8b25d0257bbb5fb315aa0b27ce7 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Thu, 7 Nov 2024 15:31:12 -0500 Subject: [PATCH 1/3] Minor revision to test_taxcalcio.py --- taxcalc.egg-info/PKG-INFO | 2 +- taxcalc/tests/test_taxcalcio.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/taxcalc.egg-info/PKG-INFO b/taxcalc.egg-info/PKG-INFO index b93fe2de9..59007e8e1 100644 --- a/taxcalc.egg-info/PKG-INFO +++ b/taxcalc.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: taxcalc -Version: 4.3.0 +Version: 4.3.1 Summary: taxcalc Home-page: https://github.com/PSLmodels/Tax-Calculator Download-URL: https://github.com/PSLmodels/Tax-Calculator diff --git a/taxcalc/tests/test_taxcalcio.py b/taxcalc/tests/test_taxcalcio.py index edf1793e0..891d9df75 100644 --- a/taxcalc/tests/test_taxcalcio.py +++ b/taxcalc/tests/test_taxcalcio.py @@ -88,7 +88,7 @@ def fixture_reformfile1(): "II_em": { // personal exemption amount (see indexing changes below) "2016": 6000, "2018": 7500, - "2020": 9000}, + "2021": 9000}, "II_em-indexed": { // personal exemption amount indexing status "2016": false, // values in future years are same as this year value "2018": true // values in future years indexed with this year as base From ef34d5ad8348aa688682af55c0c48815bdb3cbed Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Thu, 7 Nov 2024 18:03:34 -0500 Subject: [PATCH 2/3] Fix indentation of statement in calculator.py module --- taxcalc/calculator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taxcalc/calculator.py b/taxcalc/calculator.py index 353d09959..d0b92a598 100644 --- a/taxcalc/calculator.py +++ b/taxcalc/calculator.py @@ -1248,7 +1248,7 @@ def lines(text, num_indent_spaces, max_line_length=77): else: # if baseline is GrowDiff object # each GrowDiff parameter has zero as default value doc += ' baseline_value: 0.0\n' - del mdata_base + del mdata_base return doc # begin main logic of reform_documentation From fad07461f0a88f4b90cbcf0f1a3282746abbbf57 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Thu, 7 Nov 2024 18:04:52 -0500 Subject: [PATCH 3/3] Update T-C version --- taxcalc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taxcalc/__init__.py b/taxcalc/__init__.py index 702744be1..96858709e 100644 --- a/taxcalc/__init__.py +++ b/taxcalc/__init__.py @@ -14,6 +14,6 @@ from taxcalc.utils import * from taxcalc.cli import * -__version__ = '4.3.1' +__version__ = '4.3.1a' __min_python3_version__ = 10 __max_python3_version__ = 12