Skip to content

Commit 0243904

Browse files
committed
fix: update uipath-runtime 0.4.0
1 parent 287b23c commit 0243904

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[project]
22
name = "uipath"
3-
version = "2.3.5"
3+
version = "2.4.0"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"
77
dependencies = [
88
"uipath-core>=0.1.4, <0.2.0",
9-
"uipath-runtime>=0.3.1, <0.4.0",
9+
"uipath-runtime>=0.4.0, <0.5.0",
1010
"click>=8.3.1",
1111
"httpx>=0.28.1",
1212
"pyjwt>=2.10.1",

src/uipath/functions/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async def discover_runtimes(self) -> list[UiPathRuntimeProtocol]:
4949
return [self._create_runtime(ep) for ep in self.discover_entrypoints()]
5050

5151
async def new_runtime(
52-
self, entrypoint: str, runtime_id: str
52+
self, entrypoint: str, runtime_id: str, **kwargs
5353
) -> UiPathRuntimeProtocol:
5454
"""Create a new runtime instance for the given entrypoint."""
5555
return self._create_runtime(entrypoint)

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)