From cd737575df28f291f9786e2917a984f70a4ca567 Mon Sep 17 00:00:00 2001 From: Madeesh Kannan Date: Tue, 30 Jan 2024 12:40:45 +0100 Subject: [PATCH] fix: Broken version pattern in `pyproject.toml` (#294) --- integrations/uptrain/pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integrations/uptrain/pyproject.toml b/integrations/uptrain/pyproject.toml index 631b7dab8..498772313 100644 --- a/integrations/uptrain/pyproject.toml +++ b/integrations/uptrain/pyproject.toml @@ -34,11 +34,11 @@ packages = ["src/haystack_integrations"] [tool.hatch.version] source = "vcs" -tag-pattern = 'integrations\/uptrain(?P.*)' +tag-pattern = 'integrations\/uptrain-v(?P.*)' [tool.hatch.version.raw-options] root = "../.." -git_describe_command = 'git describe --tags --match="integrations/uptrain[0-9]*"' +git_describe_command = 'git describe --tags --match="integrations/uptrain-v[0-9]*"' [tool.hatch.envs.default] dependencies = ["coverage[toml]>=6.5", "pytest"]