Skip to content

Commit 4a350be

Browse files
committed
f
Signed-off-by: oliver könig <[email protected]>
1 parent 9766ff6 commit 4a350be

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

nemo_run/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from nemo_run.devspace.base import DevSpace
3232
from nemo_run.help import help
3333
from nemo_run.lazy import LazyEntrypoint, lazy_imports
34-
from nemo_run.package_info import __version__
34+
from nemo_run.package_info import __package_name__, __version__
3535
from nemo_run.run.api import run
3636
from nemo_run.run.experiment import Experiment
3737
from nemo_run.run.plugin import ExperimentPlugin as Plugin
@@ -70,5 +70,6 @@
7070
"Torchrun",
7171
"SlurmRay",
7272
"SlurmTemplate",
73-
"__version__"
73+
"__version__",
74+
"__package_name__",
7475
]

nemo_run/package_info.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,4 @@
2929
VERSION = (MAJOR, MINOR, PATCH, PRE_RELEASE, DEV)
3030

3131
__shortversion__ = ".".join(map(str, VERSION[:3]))
32+
__package_name__ = "nemo_run"

0 commit comments

Comments
 (0)