Merge pull request #348 from jamesmurdza/fix/pyproject-dependencies

Fix root project build
This commit is contained in:
ddupont
2025-08-18 09:53:16 -04:00
committed by GitHub
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
"""Core functionality shared across Cua components."""
__version__ = "0.1.0"
__version__ = "0.1.8"
+1 -1
View File
@@ -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 = [
+4 -1
View File
@@ -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"]