Skip to content

Commit 923ba34

Browse files
authored
Merge pull request #71 from sebastic/versioneer
Fix versioneer configuration.
2 parents 4669828 + 43628c4 commit 923ba34

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
numpy_groupies/_versioneer.py export-subst
1+
numpy_groupies/_version.py export-subst

numpy_groupies/_version.py

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

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ style = pep440
1010
versionfile_source = numpy_groupies/_version.py
1111
versionfile_build = numpy_groupies/_version.py
1212
tag_prefix = v
13+
parentdir_prefix = numpy_groupies-
1314

1415
[pep8]
1516
max_line_length = 120

0 commit comments

Comments
 (0)