From 510cf3418b14cffbb4dabead6f9c1bfdaf017787 Mon Sep 17 00:00:00 2001 From: GabrielVasilescu04 Date: Wed, 17 Sep 2025 17:20:08 +0300 Subject: [PATCH] fix: push cmd should include extra files --- pyproject.toml | 2 +- src/uipath/_cli/_utils/_project_files.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2f04c858b..f7cc4f9bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uipath" -version = "2.1.51" +version = "2.1.52" 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.10" diff --git a/src/uipath/_cli/_utils/_project_files.py b/src/uipath/_cli/_utils/_project_files.py index afdaf2686..ef7aa0086 100644 --- a/src/uipath/_cli/_utils/_project_files.py +++ b/src/uipath/_cli/_utils/_project_files.py @@ -69,6 +69,7 @@ def get_project_config(directory: str) -> dict[str, str]: "authors": toml_data["authors"], "dependencies": toml_data.get("dependencies", {}), "requires-python": toml_data.get("requires-python", None), + "settings": config_data.get("settings", {}), }