From 36c527276e300083c22709bda7128472359ccfec Mon Sep 17 00:00:00 2001 From: Laurence de Jong Date: Thu, 30 Jul 2026 11:30:19 +0200 Subject: [PATCH] feat: Update `uv_build` to 0.12 when using `--meta=uv` `uv` 0.12.0 is now the latest stable release on PyPI. - https://github.com/astral-sh/uv/releases/tag/0.12.0 Continues the existing pattern of tracking each new uv minor (#1352, #1396, #1434). Closes #1472 --- end_to_end_tests/metadata_snapshots/uv.pyproject.toml | 2 +- openapi_python_client/templates/pyproject_uv.toml.jinja | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/end_to_end_tests/metadata_snapshots/uv.pyproject.toml b/end_to_end_tests/metadata_snapshots/uv.pyproject.toml index 26153e44a..553582723 100644 --- a/end_to_end_tests/metadata_snapshots/uv.pyproject.toml +++ b/end_to_end_tests/metadata_snapshots/uv.pyproject.toml @@ -15,7 +15,7 @@ module-name = "test_3_1_features_client" module-root = "" [build-system] -requires = ["uv_build>=0.11.0,<0.12.0"] +requires = ["uv_build>=0.12.0,<0.13.0"] build-backend = "uv_build" [tool.ruff] diff --git a/openapi_python_client/templates/pyproject_uv.toml.jinja b/openapi_python_client/templates/pyproject_uv.toml.jinja index c14366320..dc5861af3 100644 --- a/openapi_python_client/templates/pyproject_uv.toml.jinja +++ b/openapi_python_client/templates/pyproject_uv.toml.jinja @@ -15,5 +15,5 @@ module-name = "{{ package_name }}" module-root = "" [build-system] -requires = ["uv_build>=0.11.0,<0.12.0"] +requires = ["uv_build>=0.12.0,<0.13.0"] build-backend = "uv_build"