From a63540b80706ef748b72ce52519826f3ffa338c0 Mon Sep 17 00:00:00 2001 From: Richard Tibbles Date: Fri, 5 Jun 2026 10:48:47 -0700 Subject: [PATCH] Fix setuptools-scm pyproject section name. The section was named [tool.setuptools-scm] (hyphen) but setuptools-scm only recognizes [tool.setuptools_scm] (underscore), so it never activated during builds and every build produced version 0.0.0. Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0a420c74..e5218051 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ dev = [ "ruff>=0.11", ] -[tool.setuptools-scm] +[tool.setuptools_scm] [tool.setuptools.packages.find] include = ["ricecooker*"]