Skip to content

Commit 6ce7f1e

Browse files
authored
Merge pull request EAPD-DRB#15 from rickecon/tol
Merging
2 parents 449c504 + c527d96 commit 6ce7f1e

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.0.4] - 2025-11-17 18:30:00
9+
10+
### Added
11+
12+
- Updates the TPI resource constraint `RC_TPI=0.01`
13+
814
## [0.0.3] - 2025-11-17 13:00:00
915

1016
### Added
@@ -41,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4147
- This version is a pre-release alpha. The example run script OG-ETH/examples/run_og_eth.py runs, but the model is not currently calibrated to represent the Ethiopian economy and population.
4248

4349

50+
[0.0.4]: https://github.com/EAPD-DRB/OG-ETH/compare/v0.0.3...v0.0.4
4451
[0.0.3]: https://github.com/EAPD-DRB/OG-ETH/compare/v0.0.2...v0.0.3
4552
[0.0.2]: https://github.com/EAPD-DRB/OG-ETH/compare/v0.0.1...v0.0.2
4653
[0.0.1]: https://github.com/EAPD-DRB/OG-ETH/compare/v0.0.0...v0.0.1

ogeth/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from ogeth.macro_params import *
99
from ogeth.utils import *
1010

11-
__version__ = "0.0.3"
11+
__version__ = "0.0.4"

ogeth/ogeth_default_parameters.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4778,7 +4778,7 @@
47784778
"mindist_SS": 1e-09,
47794779
"mindist_TPI": 1e-05,
47804780
"RC_SS": 1e-08,
4781-
"RC_TPI": 0.0001,
4781+
"RC_TPI": 0.01,
47824782
"reform_use_baseline_solution": true,
47834783
"initial_guess_r_SS": 0.0648,
47844784
"initial_guess_TR_SS": 0.057,
@@ -103781,4 +103781,4 @@
103781103781
"frac_tax_payroll": [
103782103782
0.0
103783103783
]
103784-
}
103784+
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="ogeth",
8-
version="0.0.3",
8+
version="0.0.4",
99
author="Marcelo LaFleur, Richard W. Evans, and Jason DeBacker",
1010
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
1111
description="Ethiopia Calibration for OG-Core",

0 commit comments

Comments
 (0)