Skip to content

Commit 64e68cd

Browse files
authored
Fix default templates for dev and dirty versions
1 parent bc87c4f commit 64e68cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setuptools_git_versioning.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from six.moves import collections_abc
88

99
DEFAULT_TEMPLATE = "{tag}" # type: str
10-
DEFAULT_DEV_TEMPLATE = "{tag}.dev{ccount}+git.{sha}" # type: str
11-
DEFAULT_DIRTY_TEMPLATE = "{tag}.dev{ccount}+git.{sha}.dirty" # type: str
10+
DEFAULT_DEV_TEMPLATE = "{tag}.post{ccount}+git.{sha}" # type: str
11+
DEFAULT_DIRTY_TEMPLATE = "{tag}.post{ccount}+git.{sha}.dirty" # type: str
1212
DEFAULT_STARTING_VERSION = '0.0.1'
1313

1414

0 commit comments

Comments
 (0)