From 5f53a4bce1ce6c9343da8e723af3b08141a4ed0b Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 12 Feb 2024 11:25:25 -0700 Subject: [PATCH 1/2] Updated Python version to be <3.12 in setup.py --- CHANGELOG.md | 6 ++++++ ogcore/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6ee68707..be7230929 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.11.1] - 2024-02-12 15:00:00 + +### Added + +- Updated `setup.py` Python version requirement to be `python_requires=">=3.7.7, <3.12"` + ## [0.11.0] - 2024-02-06 15:00:00 ### Added diff --git a/ogcore/__init__.py b/ogcore/__init__.py index a31f23e4f..a4007093f 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.11.0" +__version__ = "0.11.1" diff --git a/setup.py b/setup.py index d91ad4607..f58c97766 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.11.0", + version="0.11.1", 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", @@ -23,7 +23,7 @@ ] }, include_packages=True, - python_requires=">=3.7.7", + python_requires=">=3.7.7, <3.12", install_requires=[ "scipy>=1.7.1", "pandas>=1.2.5", From 72ee2bd13fc98dd2e2739f4523d6ff2525363fed Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 12 Feb 2024 11:29:02 -0700 Subject: [PATCH 2/2] Updated CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index be7230929..41267f6d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -182,6 +182,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +[0.11.1]: https://github.com/PSLmodels/OG-Core/compare/v0.11.0...v0.11.1 [0.11.0]: https://github.com/PSLmodels/OG-Core/compare/v0.10.10...v0.11.0 [0.10.10]: https://github.com/PSLmodels/OG-Core/compare/v0.10.9...v0.10.10 [0.10.9]: https://github.com/PSLmodels/OG-Core/compare/v0.10.8...v0.10.9