From c3f806a6699d6b46ae0fbf2ab35d32da7821f187 Mon Sep 17 00:00:00 2001 From: hfdrake Date: Tue, 3 Feb 2026 19:25:47 -0800 Subject: [PATCH 1/2] This upgrades dependencies regionate and xwmt to more tested versions All packages in the stack below this one (`xbudget`, `secionate`, `regionate`, and `xwmt`) now include Continuous Integration testing on all PRs plus automatic publishing of releases on PyPI! --- pyproject.toml | 4 ++-- xwmb/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 51793bf..691847d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,8 +17,8 @@ classifiers = [ "Operating System :: OS Independent", ] dependencies = [ - "regionate >= 0.5.0", - "xwmt >= 0.1.0", + "regionate >= 0.5.2", + "xwmt >= 0.2.0", ] [project.urls] diff --git a/xwmb/version.py b/xwmb/version.py index 6c7ea63..dbc8cc0 100644 --- a/xwmb/version.py +++ b/xwmb/version.py @@ -1,3 +1,3 @@ """xwmb: version information""" -__version__ = "0.5.2" +__version__ = "0.6.0" \ No newline at end of file From 0916f67aa73fbd81dd50a436d61b4e1ce2a4ca9e Mon Sep 17 00:00:00 2001 From: hfdrake Date: Tue, 17 Feb 2026 20:25:09 -0800 Subject: [PATCH 2/2] Drop Python to v3.11, drop direct references, and bump regionate version --- pyproject.toml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 691847d..dccb7cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,14 +10,14 @@ keywords = [ "water mass transformation", "ocean mixing" ] -requires-python = ">=3.12" +requires-python = ">=3.11" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Operating System :: OS Independent", ] dependencies = [ - "regionate >= 0.5.2", + "regionate >= 0.5.4", "xwmt >= 0.2.0", ] @@ -29,8 +29,5 @@ dependencies = [ requires = ["hatchling"] build-backend = "hatchling.build" -[tool.hatch.metadata] -allow-direct-references = true - [tool.hatch.version] path = "xwmb/version.py"