Skip to content

Commit 4c719b0

Browse files
committed
makes metadata unambiguous for CD pipeline
Signed-off-by: Andrey Kononykhin <[email protected]>
1 parent a05acf8 commit 4c719b0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plenum/__metadata__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ def set_version(version: str, version_file: str = VERSION_FILE):
3232

3333

3434
__title__ = 'indy-plenum'
35-
# __version_info__ = load_version()
36-
# __version__ = __version_info__.full
3735
__version_info__ = (1, 6)
3836
__version__ = '.'.join(map(str, __version_info__))
37+
# TODO activate once new versioning scheme becomes implemented
38+
# Note. double underscores
39+
# _version_info__ = load_version()
40+
# _version__ = __version_info__.full
3941
__author__ = "Hyperledger"
4042
__author_email__ = '[email protected]'
4143
__maintainer__ = 'Hyperledger'

0 commit comments

Comments
 (0)