Skip to content

Commit

Permalink
fix: dev segment in version specifier joined properly (#482)
Browse files Browse the repository at this point in the history
Signed-off-by: Terry Kong <[email protected]>
  • Loading branch information
terrykong authored Jan 16, 2025
1 parent 968ba12 commit 735c415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nemo_aligner/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
__version__ = __version__ + VERSION[3]

if VERSION[4] != "":
__version__ = __version__ + "." + ".".join(VERSION[4])
__version__ = __version__ + "." + ".".join(VERSION[4:])

__package_name__ = "nemo_aligner"
__contact_names__ = "NVIDIA"
Expand Down

0 comments on commit 735c415

Please sign in to comment.