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] 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"