From ccf52159f042f7be7b811a90a9baf6e9318adcef Mon Sep 17 00:00:00 2001 From: Dudi Levy <4785835+dudil@users.noreply.github.com> Date: Tue, 3 Oct 2023 08:48:53 +0300 Subject: [PATCH] fix auto version hatch options --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8d226ad..dc4baca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,10 +43,9 @@ Source = "https://github.com/dudil/fastapi_msal" source = "vcs" [tool.hatch.version.raw-options] -version_scheme = "python-simplified-semver" -local_scheme = "no-local-version" -parentdir_prefix_version = "fastapi_msal-" -git_describe_command = ["git", "describe", "--dirty", "--tags", "--long", "--match", "fastapi_msal-v*"] +version_scheme = "python-simplified-semver" +local_scheme = "no-local-version" +git_describe_command = ["git", "describe", "--tags", "--long", "--match", "*"] [tool.hatch.build.hooks.vcs] version-file = "fastapi_msal/_version.py"