Skip to content

Commit f034090

Browse files
authored
Merge pull request #93 from jdebacker/format
Prepare release 0.0.7
2 parents e444ca2 + e4a72f1 commit f034090

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ 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

88

9+
## [0.0.7] - 2025-03-12 4:00:00
10+
11+
### Added
12+
13+
- Updated calibration of the `io_matrix` to use the [2019 SAM file from UNU Wider](https://www.wider.unu.edu/sites/default/files/Publications/Technical-note/PDF/tn2023-1-2019-SAM-South-Africa-occupational-capital-stock-detail.pdf)
14+
- Updated values for `alpha_T` and `alpha_G`
15+
- Various updates to documentation and unit tests.
16+
917
## [0.0.6] - 2025-03-03 1:00:00
1018

1119
### Added
@@ -67,6 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6775
- This version is a pre-release alpha. The example run script OG-ZAF/examples/run_og_zaf.py runs, but the model is not currently calibrated to represent the South African economy and population.
6876

6977

78+
[0.0.7]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.6...v0.0.7
7079
[0.0.6]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.5...v0.0.6
7180
[0.0.5]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.4...v0.0.5
7281
[0.0.4]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.3...v0.0.4

ogzaf/__init__.py

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

11-
__version__ = "0.0.6"
11+
__version__ = "0.0.7"

ogzaf/input_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def read_SAM():
1818
try:
1919
SAM = pd.read_excel(
2020
SAM_path,
21-
sheet_name="SASAM 2019 61Ind 4Educ", # Can alternatively use sheet_name="SASM 2019 61Ind4Occ"
21+
sheet_name="SASAM 2019 61Ind 4Educ", # Can alternatively use sheet_name="SASM 2019 61Ind4Occ"
2222
skiprows=3,
2323
index_col=0,
2424
storage_options=storage_options,

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="ogzaf",
8-
version="0.0.6",
8+
version="0.0.7",
99
author="Marcelo LaFleur, Richard W. Evans, and Jason DeBacker",
1010
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
1111
description="South Africa Calibration for OG-Core",

0 commit comments

Comments
 (0)