Skip to content

Commit

Permalink
chore: Add devN to semver (#401)
Browse files Browse the repository at this point in the history
Signed-off-by: Oliver Koenig <[email protected]>
  • Loading branch information
ko3n1g authored Nov 17, 2024
1 parent 22c3408 commit 315057b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions nemo_aligner/package_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
MINOR = 6
PATCH = 0
PRE_RELEASE = "rc0"
DEV = "dev0"

# Use the following formatting: (major, minor, patch, pre-release)
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE)
# Use the following formatting: (major, minor, patch, pre-release, dev)
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE, DEV)

__shortversion__ = ".".join(map(str, VERSION[:3]))
__version__ = __shortversion__ + "".join(VERSION[3:])
__version__ = __shortversion__ + VERSION[3] + "." + ".".join(VERSION[4:])

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

0 comments on commit 315057b

Please sign in to comment.