From 7a69ef0289cc054320c07506537883307de3f7be Mon Sep 17 00:00:00 2001 From: Steve Skutnik Date: Thu, 20 Nov 2025 14:49:14 -0500 Subject: [PATCH 1/2] Update project dependencies --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d03ed30..20a0f71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,8 +21,13 @@ dependencies = [ "matplotlib", "scipy", "numpy", + "imohash", + "pygments", "pytest", "pydantic", + "h5py", + "tqdm", + "structlog" ] requires-python = ">=3.9" From 513bd33424d1b6d1409abc3770a0bf4ab52f4fbb Mon Sep 17 00:00:00 2001 From: Steve Skutnik Date: Fri, 21 Nov 2025 17:12:52 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200.14.2=20=E2=86=92=200.14?= =?UTF-8?q?.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 4 ++-- pyproject.toml | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5dc30ac..e091055 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.2 +current_version = 0.14.3 commit = True tag = True diff --git a/README.md b/README.md index 62a522b..5fa5e1a 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ ## ORIGEN Library Manager (OLM) -[![Documentation Status](https://readthedocs.org/projects/scale-olm/badge/?version=v0.14.2)](https://scale-olm.readthedocs.io/en/v0.14.2) +[![Documentation Status](https://readthedocs.org/projects/scale-olm/badge/?version=v0.14.3)](https://scale-olm.readthedocs.io/en/v0.14.3) [![codecov](https://codecov.io/gh/wawiesel/olm/branch/main/graph/badge.svg)](https://codecov.io/gh/wawiesel/olm) -The latest stable version is [v0.14.2](https://scale-olm.readthedocs.io/en/stable). +The latest stable version is [v0.14.3](https://scale-olm.readthedocs.io/en/stable). OLM is a command-line utility that streamlines aspects of using the [SCALE/ORIGEN](https://scale.ornl.gov) library to solve nuclide inventory generation problems. diff --git a/pyproject.toml b/pyproject.toml index 20a0f71..db1c340 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "scale-olm" -version = "0.14.2" +version = "0.14.3" description = "ORIGEN Library Manager: A tool for building and managing ORIGEN reactor data libraries" authors = [ { name = "William Wieselquist", email = "ww5@ornl.gov" }, @@ -27,7 +27,8 @@ dependencies = [ "pydantic", "h5py", "tqdm", - "structlog" + "structlog", + "hypothesis" ] requires-python = ">=3.9"