Skip to content

Commit 9b79ea4

Browse files
authored
Update version.py
update version to get micro version
1 parent deb254a commit 9b79ea4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scilpy/version.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
_version_extra = ''
1212

1313
# Construct full version string from these.
14-
_ver = [_version_major, _version_minor]
15-
if _version_micro:
16-
_ver.append(_version_micro)
14+
_ver = [_version_major, _version_minor, _version_micro]
15+
1716
if _version_extra:
1817
_ver.append(_version_extra)
1918

0 commit comments

Comments
 (0)