Skip to content

Commit 259d934

Browse files
committed
fix so that the 'v' prefix does not show up in the version strings
1 parent 39c46d6 commit 259d934

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyfftw/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def get_config():
4141
cfg = VersioneerConfig()
4242
cfg.VCS = "git"
4343
cfg.style = "pep440"
44-
cfg.tag_prefix = ""
44+
cfg.tag_prefix = "v"
4545
cfg.parentdir_prefix = "pyfftw-"
4646
cfg.versionfile_source = "pyfftw/_version.py"
4747
cfg.verbose = False

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ VCS = git
33
style = pep440
44
versionfile_source = pyfftw/_version.py
55
versionfile_build = pyfftw/_version.py
6-
tag_prefix =
6+
tag_prefix = v
77
parentdir_prefix = pyfftw-

0 commit comments

Comments
 (0)