Skip to content

Commit a1cd0ae

Browse files
chore: update Python version to 3.10
1 parent 38abf6f commit a1cd0ae

File tree

4 files changed

+8
-358
lines changed

4 files changed

+8
-358
lines changed

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9
1+
3.10

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[project]
22
name = "uipath"
3-
version = "2.0.0.dev2"
3+
version = "2.0.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" }
6-
requires-python = ">=3.9"
6+
requires-python = ">=3.10"
77
dependencies = [
88
"click>=8.1.8",
99
"httpx>=0.28.1",
@@ -19,7 +19,6 @@ classifiers = [
1919
"Development Status :: 3 - Alpha",
2020
"Intended Audience :: Developers",
2121
"Topic :: Software Development :: Build Tools",
22-
"Programming Language :: Python :: 3.9",
2322
"Programming Language :: Python :: 3.10",
2423
"Programming Language :: Python :: 3.11",
2524
"Programming Language :: Python :: 3.12",

src/uipath/_cli/middlewares.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def load_plugins(cls) -> None:
8686
else:
8787
middlewares = list(entry_points.get("uipath.middlewares", []))
8888
except Exception:
89-
middlewares = list(importlib.metadata.entry_points())
89+
middlewares = list(importlib.metadata.entry_points()) # type: ignore
9090
middlewares = [
9191
ep for ep in middlewares if ep.group == "uipath.middlewares"
9292
]

0 commit comments

Comments
 (0)