From 35c1109a559195e79505cec355b08c6eb7be9988 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Fri, 1 Aug 2025 14:24:29 -0400 Subject: [PATCH] Attempt fix for uv Dependabot We're failing to run Dependabot for uv dependencies: https://github.com/bufbuild/protovalidate-python/actions/runs/16629514901/job/47054963334 I found a fix for this issue, here: https://github.com/dependabot/dependabot-core/issues/12340#issuecomment-3000630760 Makes me nervous that a stray release could end up with a 0.0.0 version, but we could just yank it - hopefully the upstream bug is fixed soon. Ref: https://setuptools-scm.readthedocs.io/en/latest/config/#configuration-parameters I'm making a [similar fix for connect-python][1]. [1]: https://github.com/connectrpc/connect-python/pull/30 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d96cf05..64b1c83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,7 @@ dev = [ [tool.hatch.version] source = "vcs" +raw-options = { fallback_version = "0.0.0" } [tool.ruff] line-length = 120