Skip to content
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

Update version number and jdebacker review comments #4

Merged
merged 2 commits into from
Apr 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ogcore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from ogcore.txfunc import *
from ogcore.utils import *

__version__ = "0.10.7"
__version__ = "0.10.8"
4 changes: 2 additions & 2 deletions ogcore/txfunc.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def get_tax_rates(
]
for t in range(income.shape[0])
]
txrates = np.array(txrates)
txrates = np.squeeze(np.array(txrates))

return txrates

Expand Down Expand Up @@ -821,7 +821,7 @@ def txfunc_est(
splines=[100, 100],
)
wsse = wsse_cstr
params = mono_interp
params = [mono_interp]
params_to_plot = params
else:
raise RuntimeError(
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ogcore",
version="0.10.7",
version="0.10.8",
author="Jason DeBacker and Richard W. Evans",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
description="A general equilibribum overlapping generations model for fiscal policy analysis",
Expand Down