From 04984ba864f2bcce48d231bcef459b7e24de75b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 07:42:42 +0000 Subject: [PATCH 1/2] build(deps-dev): bump hatchling from 1.31.0 to 1.32.0 Bumps [hatchling](https://github.com/pypa/hatch) from 1.31.0 to 1.32.0. - [Release notes](https://github.com/pypa/hatch/releases) - [Commits](https://github.com/pypa/hatch/compare/hatchling-v1.31.0...hatchling-v1.32.0) --- updated-dependencies: - dependency-name: hatchling dependency-version: 1.32.0 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 97d44e0ec..dd3bde12a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,7 +119,7 @@ Repository = "https://github.com/OpenAdaptAI/openadapt" "Bug Tracker" = "https://github.com/OpenAdaptAI/openadapt/issues" [build-system] -requires = ["hatchling==1.31.0"] +requires = ["hatchling==1.32.0"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] From 46cd2b6310cab915f66c51bd569fc0dd89eba801 Mon Sep 17 00:00:00 2001 From: abrichr Date: Tue, 18 Aug 2026 11:26:24 -0400 Subject: [PATCH 2/2] test: align Hatchling release pin --- tests/test_release_lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_release_lock.py b/tests/test_release_lock.py index 4b15f233f..ba8e4fe71 100644 --- a/tests/test_release_lock.py +++ b/tests/test_release_lock.py @@ -96,7 +96,7 @@ def test_release_workflow_pins_actions_and_separates_permissions(): action_refs = re.findall(r"(?m)^\s*uses:\s+\S+@([^\s#]+)", workflow) assert action_refs assert all(re.fullmatch(r"[0-9a-f]{40}", ref) for ref in action_refs) - assert 'requires = ["hatchling==1.31.0"]' in metadata + assert 'requires = ["hatchling==1.32.0"]' in metadata assert document["permissions"] == {"contents": "read"} jobs = document["jobs"]