Skip to content

Commit d546ef4

Browse files
authored
Merge pull request #1036 from UiPath/bump-version-2.2.36
chore: bump version to 2.2.36
2 parents b48a78c + da86aac commit d546ef4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.2.35"
3+
version = "2.2.36"
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"

src/uipath/_cli/_evals/mocks/mockito_mocker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import importlib
44
from typing import Any, Callable
55

6-
from mockito import ( # type: ignore[import-untyped] # explicit ignore
6+
from mockito import ( # type: ignore[import-untyped]
77
invocation,
88
mocking,
99
)

src/uipath/_cli/_utils/_debug.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def setup_debugging(debug: bool, debug_port: int = 5678) -> bool:
2626

2727
# Try to import debugpy, log warning if not available
2828
try:
29-
import debugpy # type: ignore[import-not-found] # explicit ignore
29+
import debugpy # type: ignore[import-not-found]
3030
except ImportError:
3131
console.warning(
3232
"debugpy not found, please install it and retry: '[uv] pip install debugpy'"

src/uipath/eval/mocks/mockable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from typing import Any, List, Optional
99

1010
from pydantic import TypeAdapter
11-
from pydantic_function_models import ( # type: ignore[import-untyped] # explicit ignore
11+
from pydantic_function_models import ( # type: ignore[import-untyped]
1212
ValidatedFunction,
1313
)
1414

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)