From 1b521e865edd7955f0c0f9eb9ef2625979b9acc7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 00:33:15 +0000 Subject: [PATCH 1/2] ci: 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 774818f..96f2e28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 [build-system] -requires = ["hatchling==1.31.0"] +requires = ["hatchling==1.32.0"] build-backend = "hatchling.build" [project] From 09ebc7ef092d7119fada57f960f9704ba41ee68d Mon Sep 17 00:00:00 2001 From: kriptoburak Date: Fri, 21 Aug 2026 10:11:50 +0300 Subject: [PATCH 2/2] test: update Hatchling invariant Signed-off-by: kriptoburak --- tests/test_package_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_package_metadata.py b/tests/test_package_metadata.py index bdc6373..3ba9d9b 100644 --- a/tests/test_package_metadata.py +++ b/tests/test_package_metadata.py @@ -35,7 +35,7 @@ def test_pyproject_and_package_versions_match() -> None: def test_build_backend_and_package_path_are_fixed() -> None: pyproject = tomllib.loads((ROOT / "pyproject.toml").read_text()) - assert pyproject["build-system"]["requires"] == ["hatchling==1.31.0"] + assert pyproject["build-system"]["requires"] == ["hatchling==1.32.0"] assert pyproject["build-system"]["build-backend"] == "hatchling.build" assert pyproject["tool"]["hatch"]["build"]["targets"]["wheel"]["packages"] == [ "prefect_xquik"