From 22a5c6972ee6066f9a67543baad5082641c4cac8 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 2 Dec 2023 12:43:18 -0600 Subject: [PATCH] meta: Fix version generation *setuptools_scm* is not used unless a `tool.setuptools_scm` table is present in `pyproject.toml`. --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2aad61c..bb14bc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,8 @@ xactfetch = "xactfetch:main" requires = ["setuptools", "setuptools-scm"] build-backend = "setuptools.build_meta" +[tool.setuptools_scm] + [tool.pyright] venvPath = '.' venv = '.venv'