Skip to content

Commit 512da5d

Browse files
authored
chore: Version bump for 0.15.1 release (#2844)
Signed-off-by: oliver könig <okoenig@nvidia.com>
1 parent 0d7e02b commit 512da5d

2 files changed

Lines changed: 26 additions & 26 deletions

File tree

megatron/core/distributed/fsdp/src/megatron_fsdp/package_info.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33

44
MAJOR = 0
55
MINOR = 2
6-
PATCH = 0
7-
PRE_RELEASE = ''
6+
PATCH = 1
7+
PRE_RELEASE = ""
88

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

12-
__shortversion__ = '.'.join(map(str, VERSION[:3]))
13-
__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])
12+
__shortversion__ = ".".join(map(str, VERSION[:3]))
13+
__version__ = ".".join(map(str, VERSION[:3])) + "".join(VERSION[3:])
1414

15-
__package_name__ = 'megatron_fsdp'
16-
__contact_names__ = 'NVIDIA'
17-
__contact_emails__ = 'nemo-toolkit@nvidia.com' # use NeMo Email
18-
__homepage__ = 'https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html'
19-
__repository_url__ = 'https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core'
20-
__download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases'
15+
__package_name__ = "megatron_fsdp"
16+
__contact_names__ = "NVIDIA"
17+
__contact_emails__ = "nemo-toolkit@nvidia.com" # use NeMo Email
18+
__homepage__ = "https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html"
19+
__repository_url__ = "https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core"
20+
__download_url__ = "https://github.com/NVIDIA/Megatron-LM/releases"
2121
__description__ = (
22-
'Megatron Core - a library for efficient and scalable training of transformer based models'
22+
"Megatron Core - a library for efficient and scalable training of transformer based models"
2323
)
24-
__license__ = 'BSD-3'
24+
__license__ = "BSD-3"
2525
__keywords__ = (
26-
'deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch'
26+
"deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch"
2727
)

megatron/core/package_info.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33

44
MAJOR = 0
55
MINOR = 15
6-
PATCH = 0
7-
PRE_RELEASE = ''
6+
PATCH = 1
7+
PRE_RELEASE = ""
88

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

12-
__shortversion__ = '.'.join(map(str, VERSION[:3]))
13-
__version__ = '.'.join(map(str, VERSION[:3])) + ''.join(VERSION[3:])
12+
__shortversion__ = ".".join(map(str, VERSION[:3]))
13+
__version__ = ".".join(map(str, VERSION[:3])) + "".join(VERSION[3:])
1414

15-
__package_name__ = 'megatron_core'
16-
__contact_names__ = 'NVIDIA'
17-
__contact_emails__ = 'nemo-toolkit@nvidia.com' # use NeMo Email
18-
__homepage__ = 'https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html'
19-
__repository_url__ = 'https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core'
20-
__download_url__ = 'https://github.com/NVIDIA/Megatron-LM/releases'
15+
__package_name__ = "megatron_core"
16+
__contact_names__ = "NVIDIA"
17+
__contact_emails__ = "nemo-toolkit@nvidia.com" # use NeMo Email
18+
__homepage__ = "https://docs.nvidia.com/megatron-core/developer-guide/latest/user-guide/index.html"
19+
__repository_url__ = "https://github.com/NVIDIA/Megatron-LM/tree/main/megatron/core"
20+
__download_url__ = "https://github.com/NVIDIA/Megatron-LM/releases"
2121
__description__ = (
22-
'Megatron Core - a library for efficient and scalable training of transformer based models'
22+
"Megatron Core - a library for efficient and scalable training of transformer based models"
2323
)
24-
__license__ = 'BSD-3'
24+
__license__ = "BSD-3"
2525
__keywords__ = (
26-
'deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch'
26+
"deep learning, machine learning, gpu, NLP, NLU, language, transformer, nvidia, pytorch, torch"
2727
)

0 commit comments

Comments
 (0)