Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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",
Expand All @@ -100,15 +100,15 @@ 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
# self-signed receipt. Not the hosted control plane.
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'"]
Expand All @@ -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.
Expand Down Expand Up @@ -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"
Expand Down
Loading