File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/ansys/tools/common/launcher Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3131from .interface import FALLBACK_LAUNCH_MODE_NAME , DataclassProtocol , LauncherProtocol
3232
3333LAUNCHER_ENTRY_POINT = "ansys.tools.common.launcher"
34+ DEPRECATED_LAUNCHER_ENTRY_POINT = "ansys.tools.local_product_launcher.launcher"
3435
3536
3637def get_launcher (* , product_name : str , launch_mode : str ) -> type [LauncherProtocol [DataclassProtocol ]]:
@@ -110,6 +111,6 @@ def get_fallback_launcher(product_name: str) -> type[LauncherProtocol[DataclassP
110111def _get_entry_points () -> tuple [importlib .metadata .EntryPoint , ...]:
111112 """Get all Local Product Launcher plugin entrypoints for launchers."""
112113 try :
113- return entry_points (group = LAUNCHER_ENTRY_POINT ) # type: ignore
114+ return entry_points (group = LAUNCHER_ENTRY_POINT ) + entry_points ( group = DEPRECATED_LAUNCHER_ENTRY_POINT ) # type: ignore
114115 except KeyError :
115116 return tuple ()
You can’t perform that action at this time.
0 commit comments