Skip to content

Commit e51a130

Browse files
authored
Merge pull request PSLmodels#1013 from jdebacker/package_vars
Package vars
2 parents d927ad5 + fcc35cf commit e51a130

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
9+
## [0.14.1] - 2025-03-16 12:00:00
10+
11+
### Bug Fix
12+
13+
- Packages `model_variables.json` with `ogcore`
14+
815
## [0.14.0] - 2025-03-16 07:00:00
916

1017
### Added
@@ -356,6 +363,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
356363
- Version [0.7.0] on August 30, 2021 was the first time that the OG-USA repository was detached from all of the core model logic, which was named OG-Core. Before this version, OG-USA was part of what is now the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository. In the next version of OG-USA, we adjusted the version numbering to begin with 0.1.0. This initial version of 0.7.0, was sequential from what OG-USA used to be when the OG-Core project was called OG-USA.
357364
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.
358365

366+
[0.14.1]: https://github.com/PSLmodels/OG-Core/compare/v0.14.0...v0.14.1
359367
[0.14.0]: https://github.com/PSLmodels/OG-Core/compare/v0.13.2...v0.14.0
360368
[0.13.2]: https://github.com/PSLmodels/OG-Core/compare/v0.13.1...v0.13.2
361369
[0.13.1]: https://github.com/PSLmodels/OG-Core/compare/v0.13.0...v0.13.1

ogcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from ogcore.txfunc import *
2121
from ogcore.utils import *
2222

23-
__version__ = "0.14.0"
23+
__version__ = "0.14.1"

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="ogcore",
8-
version="0.14.0",
8+
version="0.14.1",
99
author="Jason DeBacker and Richard W. Evans",
1010
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
1111
description="A general equilibrium overlapping generations model for fiscal policy analysis",
@@ -18,7 +18,11 @@
1818
},
1919
packages=["ogcore"],
2020
package_data={
21-
"ogcore": ["default_parameters.json", "model_variables.json", "OGcorePlots.mplstyle"]
21+
"ogcore": [
22+
"default_parameters.json",
23+
"model_variables.json",
24+
"OGcorePlots.mplstyle",
25+
]
2226
},
2327
include_packages=True,
2428
python_requires=">=3.7.7, <3.13",

0 commit comments

Comments
 (0)