Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.1.93"
version = "2.1.94"
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand All @@ -22,6 +22,7 @@ dependencies = [
"mockito>=1.5.4",
"hydra-core>=1.3.2",
"pydantic-function-models>=0.1.10",
"pysignalr==1.3.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
Expand Down
3 changes: 2 additions & 1 deletion src/uipath/_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

from ._utils._common import add_cwd_to_path, load_environment_variables
from .cli_auth import auth as auth
from .cli_debug import debug as debug # type: ignore
from .cli_deploy import deploy as deploy # type: ignore
from .cli_dev import dev as dev
from .cli_eval import eval as eval # type: ignore
Expand Down Expand Up @@ -74,4 +75,4 @@ def cli(lv: bool, v: bool) -> None:
cli.add_command(pull)
cli.add_command(eval)
cli.add_command(dev)
cli.add_command(run, name="debug")
cli.add_command(debug)
Loading