From 03e5cf0ecc1b9b60956e7048a364cf50d91f612e Mon Sep 17 00:00:00 2001 From: Raoul Schram Date: Fri, 12 Aug 2022 14:56:08 +0200 Subject: [PATCH] Fix versioneer setup --- metasynth/_version.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/metasynth/_version.py b/metasynth/_version.py index a7635ecb..e8b30451 100644 --- a/metasynth/_version.py +++ b/metasynth/_version.py @@ -43,7 +43,7 @@ def get_config(): cfg = VersioneerConfig() cfg.VCS = "git" cfg.style = "pep440" - cfg.tag_prefix = "metasynth" + cfg.tag_prefix = "v" cfg.parentdir_prefix = "metasynth-" cfg.versionfile_source = "metasynth/_version.py" cfg.verbose = False diff --git a/setup.cfg b/setup.cfg index e893bcea..f9f24fc6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,5 +3,5 @@ VCS = git style = pep440 versionfile_source = metasynth/_version.py versionfile_build = metasynth/_version.py -tag_prefix = metasynth +tag_prefix = v parentdir_prefix = metasynth-