From adca016d63a3c48a23266177e1a560a08aed926e Mon Sep 17 00:00:00 2001 From: James Murdza Date: Sun, 17 Aug 2025 09:03:10 -0400 Subject: [PATCH 1/3] Fix cua-core version --- libs/python/core/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/python/core/pyproject.toml b/libs/python/core/pyproject.toml index 82ecc775a..b9692162f 100644 --- a/libs/python/core/pyproject.toml +++ b/libs/python/core/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "pdm.backend" [project] name = "cua-core" -version = "0.1.0" +version = "0.1.8" description = "Core functionality for Cua including telemetry and shared utilities" readme = "README.md" authors = [ From 31e03621371a16398144c5817aca7d5a1c546c7c Mon Sep 17 00:00:00 2001 From: James Murdza Date: Sun, 17 Aug 2025 09:03:19 -0400 Subject: [PATCH 2/3] Fix root project requires-python version --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2330fbe9e..f456d31c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "CUA (Computer Use Agent) mono-repo" license = { text = "MIT" } name = "cua-workspace" readme = "README.md" -requires-python = ">=3.11" +requires-python = ">=3.12" version = "0.1.0" [project.urls] @@ -51,6 +51,9 @@ test = [ [tool.pdm.resolution] respect-source-order = true +[tool.pdm.resolution.overrides] +hud-python = "0.2.10" + [tool.black] line-length = 100 target-version = ["py311"] From 0c13470122237cb3172e466b27b75087167bdb23 Mon Sep 17 00:00:00 2001 From: James Murdza Date: Sun, 17 Aug 2025 09:40:23 -0400 Subject: [PATCH 3/3] Update __version__ in cua-core --- libs/python/core/core/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/python/core/core/__init__.py b/libs/python/core/core/__init__.py index 32b90f4c0..9716bfd2d 100644 --- a/libs/python/core/core/__init__.py +++ b/libs/python/core/core/__init__.py @@ -1,3 +1,3 @@ """Core functionality shared across Cua components.""" -__version__ = "0.1.0" +__version__ = "0.1.8"