-
-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add capability to handle tmd input #2740
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
6dc7b7a
Add capability to handle tmd.csv input file
martinholmer c1ecae6
Add nocover codecov pragmas to tmd statements in two modules
martinholmer 81472e8
Add tmd_weights.csv.gz to MANIFEST.in
martinholmer bb0132c
Add taxcalc/tmd_weights.csv.gz file
martinholmer 87aecb7
Fix use of Records.tmd_constructor static function
martinholmer 1c6ec0d
Revise tmd_weights.csv.gz to include integer scaled weight values
martinholmer 975b5a4
Install more-precise weights
martinholmer 7ffa774
Simplify Records.tmd_construction static function logic
martinholmer b3ccad7
Install new tmd weights and growfactors files
martinholmer f84f9fa
Add using_tmd arguments to grow-related constructors
martinholmer fab6bd6
Simplify GrowFactors contructor
martinholmer 0e4f8e5
Add using_tmd argument to GrowDiff constructor
martinholmer 6b60ef7
More revisions to growfactors.py and growdiff.py code
martinholmer 1b027d8
Revise test_growfactors.py to reflect new constructor argument
martinholmer 536142f
Rollback recent growfactors/growdiff changes on this branch
martinholmer 012ee76
Install new thru-2034 tmd_weights.csv.gz and growfactors.csv files
martinholmer da99dde
Fix typos in growfactors.py
martinholmer 01a8d71
Install thru-2074 growfactors and tmd_weights; make params go thru 2074
martinholmer 37304b8
Fix two test failures
martinholmer 8c0eed3
Revise some policy tests to make them execute faster
martinholmer 3076408
Disable pytest_sessionfinish in tests/conftest.py
martinholmer 9dce222
Fix typo in test_puf_var_stats.py
martinholmer 6053d49
Fix typo in test_policy.py
martinholmer 9088a1e
Add custom marks to pytest.ini
martinholmer b583be6
Make environment.yml requirements consistent with conda.recipe/meta.yaml
martinholmer 1cd7e3d
Merge in recent changes on master branch
martinholmer d53fd3e
Streamline pytest test timing logic
martinholmer b1cd909
Reorder markers in pytest.ini file
martinholmer 7f64089
Remove obsolete .github/workflows/build_new_test_benchmark.yml
martinholmer 75d7b81
Add test_stats_benchmark.csv from master branch
martinholmer 8519a6c
Update .github/workflows/build_and_test.yml file
martinholmer 7906d3d
Change 2074 to 2034 in *.json and *.py files
martinholmer f215b09
Remove obsolete taxcalc/tests/test_stats_benchmark.csv file
martinholmer 6a869c6
Add back the test_stats_benchmark.csv file
martinholmer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -282,4 +282,4 @@ | |
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -500,4 +500,4 @@ | |
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it important to provide an upper bound on the versions for certain packages, like
numpy
andpandas
? Historically, Tax-Calculator has tried to remain compatible with the most recent versions of the dependencies.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are several deprecation warnings in the code (mostly related to pandas) that say the current code will cause errrors when pandas 3.0 is used. I check the pandas web site and they said 3.0 would be released any day now.
So, the limits are temporary. They will be removed when the deprecated code gets fixed.