Skip to content

Commit 835d8d2

Browse files
authored
Merge pull request #414 from UiPath/fix/include_uv_lock
feat: pack uv.lock
2 parents 7e35a69 + fde2d9a commit 835d8d2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

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.0.71"
3+
version = "2.0.72"
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.10"

src/uipath/_cli/cli_pack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def pack_fn(projectName, description, entryPoints, version, authors, directory):
304304
with open(file_path, "r", encoding="latin-1") as f:
305305
z.writestr(f"content/{rel_path}", f.read())
306306

307-
optional_files = ["pyproject.toml", "README.md"]
307+
optional_files = ["pyproject.toml", "README.md", "uv.lock"]
308308
for file in optional_files:
309309
file_path = os.path.join(directory, file)
310310
if os.path.exists(file_path):

0 commit comments

Comments
 (0)