From 0be79d6fe9acbbcf669826599921796c7dd128f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 18:16:06 +0000 Subject: [PATCH] build: update openadapt-types requirement Updates the requirements on [openadapt-types](https://github.com/OpenAdaptAI/openadapt-types) to permit the latest version. - [Release notes](https://github.com/OpenAdaptAI/openadapt-types/releases) - [Changelog](https://github.com/OpenAdaptAI/openadapt-types/blob/main/CHANGELOG.md) - [Commits](https://github.com/OpenAdaptAI/openadapt-types/compare/v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: openadapt-types dependency-version: 0.18.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index eda065a6..1a66ff76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,7 +44,7 @@ dependencies = [ "cryptography>=42.0", # Portable ProcessContract v1 capability, artifact, authentication, and # process-receipt contracts. The healthy runtime remains model-neutral. - "openadapt-types>=0.17.0,<0.18.0", + "openadapt-types>=0.17.0,<0.19.0", ] [project.optional-dependencies] @@ -77,7 +77,7 @@ dev = [ # scope and issuer), and reward evidence receipt the reward worker signs. # A peer must still negotiate each schema; the dependency alone never # upgrades an existing decision surface. - "openadapt-types>=0.17.0,<0.18.0", + "openadapt-types>=0.17.0,<0.19.0", # Engineering-hygiene gates (lint+format, type-check, coverage). Pinned to # majors so CI and local dev run the same checkers. "ruff==0.16.5", @@ -100,7 +100,7 @@ grounding = ["openadapt-grounding>=0.1.0"] console = [ "fastapi>=0.110", "uvicorn>=0.29", - "openadapt-types>=0.17.0,<0.18.0", + "openadapt-types>=0.17.0,<0.19.0", ] # Reference Execute server: `openadapt-flow serve-execute`. Same public # request schema as Cloud Execute, hosted in this process with a local @@ -108,7 +108,7 @@ console = [ execute = [ "fastapi>=0.110", "uvicorn>=0.29", - "openadapt-types>=0.17.0,<0.18.0", + "openadapt-types>=0.17.0,<0.19.0", ] # WindowsBackend: HTTP client for the WAA (Windows Agent Arena) server. windows = ["requests>=2.31", "pywin32>=312; platform_system == 'Windows'"] @@ -118,7 +118,7 @@ windows = ["requests>=2.31", "pywin32>=312; platform_system == 'Windows'"] reward = [ "fastapi>=0.110", "uvicorn>=0.29", - "openadapt-types>=0.17.0,<0.18.0", + "openadapt-types>=0.17.0,<0.19.0", ] # Native macOS window capture/input. Imported lazily; other platforms never # install or import these framework bindings. @@ -181,7 +181,7 @@ capture = ["openadapt-capture>=1.2.0"] # field-exact against the released schemas. The `interop-types` CI job # type-checks and tests the boundaries against the real package; each schema is # consumed only by an explicitly negotiated peer. -interop = ["openadapt-types>=0.17.0,<0.18.0"] +interop = ["openadapt-types>=0.17.0,<0.19.0"] [project.scripts] openadapt-flow = "openadapt_flow.__main__:main"