Skip to content

Commit

Permalink
Update version.py
Browse files Browse the repository at this point in the history
update version to get micro version
  • Loading branch information
arnaudbore authored Apr 23, 2024
1 parent deb254a commit 9b79ea4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scilpy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
_version_extra = ''

# Construct full version string from these.
_ver = [_version_major, _version_minor]
if _version_micro:
_ver.append(_version_micro)
_ver = [_version_major, _version_minor, _version_micro]

if _version_extra:
_ver.append(_version_extra)

Expand Down

0 comments on commit 9b79ea4

Please sign in to comment.