From e8befb68c7c2d788a851ae0bd0918fe30c5ad116 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Fri, 1 Aug 2025 14:20:16 -0400 Subject: [PATCH] Attempt fix for uv Dependabot Dependabot failed to run for uv: https://github.com/connectrpc/connect-python/actions/runs/16681250850/job/47220205967 Found a fix, 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 Signed-off-by: Stefan VanBuren --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 499515a..48a8545 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ Issues = "https://github.com/connectrpc/connect-python/issues" [tool.hatch.version] source = "vcs" -raw-options = { local_scheme = "no-local-version" } +raw-options = { local_scheme = "no-local-version", fallback_version = "0.0.0" } [tool.hatch.build.targets.wheel] packages = ["src/connectrpc"]