Skip to content

Commit 352b28d

Browse files
committed
fix typo in error handling
1 parent 06a78d0 commit 352b28d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

metaflow_extensions/torchrun/plugins/torchrun_libs/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def _exec_cmd(
9090
cmd.append(entrypoint)
9191
else:
9292
raise MetaflowException(
93-
"current.deepspeed.run(..., entrypoint=<SCRIPT>, ...) arg must be specified."
93+
"current.torchrun.run(..., entrypoint=<SCRIPT>, ...) arg must be specified."
9494
)
9595
if entrypoint_args is not None and isinstance(entrypoint_args, dict):
9696
cmd.extend(_dict_to_args(entrypoint_args))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_namespace_packages
22

3-
version = "0.0.7"
3+
version = "0.0.8"
44

55
setup(
66
name="metaflow-torchrun",

0 commit comments

Comments
 (0)