Skip to content

Commit

Permalink
Merge pull request #4 from rickecon/prrathi-master
Browse files Browse the repository at this point in the history
Update version number and jdebacker review comments
  • Loading branch information
prrathi authored Apr 22, 2023
2 parents fa23622 + 1c93aff commit fc2e081
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit fc2e081

Please sign in to comment.