From 139c4d5851e10aa0a4db8958860c8b07ee4c5088 Mon Sep 17 00:00:00 2001 From: Imani Pelton Date: Wed, 8 Jan 2025 14:48:33 -0500 Subject: [PATCH] fix: correct git versioning error (#957) --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7e356ecf9..5ba90bb9e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -203,9 +203,9 @@ git_describe_command = [ "--dirty", "--long", "--match", - "'[0-9]*.[0-9]*.[0-9]*'", + "[0-9]*.[0-9]*.[0-9]*", "--exclude", - "'*[^0-9.]*'", + "*[^0-9.]*", ] [tool.black]