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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "uipath"
version = "2.8.2"
version = "2.8.3"
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.11"
Expand Down
2 changes: 2 additions & 0 deletions src/uipath/functions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from uipath.runtime import UiPathRuntimeFactoryRegistry

from .debug import UiPathDebugFunctionsRuntime
from .factory import UiPathFunctionsRuntimeFactory
from .runtime import UiPathFunctionsRuntime

Expand All @@ -19,6 +20,7 @@ def register_default_runtime_factory():


__all__ = [
"UiPathDebugFunctionsRuntime",
"UiPathFunctionsRuntimeFactory",
"UiPathFunctionsRuntime",
"register_default_runtime_factory",
Expand Down
Loading