Skip to content

Commit 6dc97e6

Browse files
abrichrclaude
andauthored
fix: rename consilium dependency to openadapt-consilium and revert Python 3.11 requirement (#69)
The `consilium` name on PyPI belongs to another project. `openadapt-consilium` v0.3.2 is now published with requires-python >=3.10, so we can revert our temporary Python 3.11 bump and use the correct package name. Changes: - Rename `consilium>=0.1.0` to `openadapt-consilium>=0.3.2` in dependencies - Update `[tool.uv.sources]` key from `consilium` to `openadapt-consilium` - Revert `requires-python` from `>=3.11` back to `>=3.10` - Re-add `Programming Language :: Python :: 3.10` classifier Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent b12fc66 commit 6dc97e6

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.beads/issues.jsonl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
{"id":"openadapt-evals-hvm","title":"VL model fix PR #18 ready to merge","notes":"2026-02-08: openadapt-ml PR #18 was already merged on 2026-01-29. VL model fix is done.","status":"closed","priority":0,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-01-29T16:17:03.491938-05:00","created_by":"Richard Abrich","updated_at":"2026-02-08T12:55:19.233249-05:00","closed_at":"2026-02-08T12:55:19.233249-05:00","close_reason":"PR #18 already merged 2026-01-29"}
1414
{"id":"openadapt-evals-mx8","title":"Analyze evaluation results and publish findings","description":"After demo-conditioned evaluation completes, analyze results: success rates, failure modes, demo impact. Create data-driven roadmap for improvements.","notes":"wright repo (OpenAdaptAI/wright) scaffolding underway. Herald + consilium repos transferred to OpenAdaptAI org. Wright will be the orchestration layer for eval pipeline.","status":"open","priority":1,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-02-14T12:23:06.328838-05:00","created_by":"Richard Abrich","updated_at":"2026-03-02T00:08:08.422633-05:00"}
1515
{"id":"openadapt-evals-sz4","title":"RCA: Windows product key prompt recurring issue","status":"closed","priority":0,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-01-20T18:59:36.266286-05:00","created_by":"Richard Abrich","updated_at":"2026-01-20T20:32:06.493102-05:00","closed_at":"2026-01-20T20:32:06.493102-05:00","close_reason":"RCA complete - root cause is VERSION mismatch (CLI=11, Dockerfile=11e). Fix documented in RECURRING_ISSUES.md and WINDOWS_PRODUCT_KEY_RCA.md"}
16-
{"id":"openadapt-evals-vcb","title":"Run demo-conditioned WAA evaluation","description":"Once demos are recorded, run WAA evaluation with demo-conditioned agents (RetrievalAugmentedAgent with real demos). Target: measure improvement over zero-shot baseline. Requires real demos from recording task.","notes":"2026-03-01: GPU grant applications reviewed and rewritten (11 files). Writing done, blocked on eval results (DC signal on harder tasks). Detailed status tracked in openadapt-internal (private repo).","status":"open","priority":0,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-02-14T12:23:04.624305-05:00","created_by":"Richard Abrich","updated_at":"2026-03-02T01:14:44.513125-05:00"}
16+
{"id":"openadapt-evals-vcb","title":"Run demo-conditioned WAA evaluation","description":"Once demos are recorded, run WAA evaluation with demo-conditioned agents (RetrievalAugmentedAgent with real demos). Target: measure improvement over zero-shot baseline. Requires real demos from recording task.","notes":"2026-03-01: GPU grant applications reviewed and rewritten (11 files). Writing done, blocked on eval results (DC signal on harder tasks). Detailed status tracked in openadapt-internal (private repo).","status":"open","priority":0,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-02-14T12:23:04.624305-05:00","created_by":"Richard Abrich","updated_at":"2026-03-02T14:21:46.740836-05:00"}
1717
{"id":"openadapt-evals-wis","title":"Add pre-flight check to detect Windows install issues","status":"closed","priority":1,"issue_type":"task","owner":"richard.abrich@gmail.com","created_at":"2026-01-20T18:59:36.865052-05:00","created_by":"Richard Abrich","updated_at":"2026-01-20T20:32:06.757261-05:00","closed_at":"2026-01-20T20:32:06.757261-05:00","close_reason":"Duplicate of openadapt-evals-0dt"}

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "openadapt-evals"
77
version = "0.19.0"
88
description = "Evaluation infrastructure for GUI agent benchmarks"
99
readme = "README.md"
10-
requires-python = ">=3.11"
10+
requires-python = ">=3.10"
1111
license = "MIT"
1212
authors = [
1313
{name = "Richard Abrich", email = "richard@openadapt.ai"}
@@ -22,6 +22,7 @@ classifiers = [
2222
"License :: OSI Approved :: MIT License",
2323
"Operating System :: OS Independent",
2424
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.10",
2526
"Programming Language :: Python :: 3.11",
2627
"Programming Language :: Python :: 3.12",
2728
"Topic :: Scientific/Engineering :: Artificial Intelligence",
@@ -39,7 +40,7 @@ dependencies = [
3940
"httpx>=0.25.0",
4041
"openai>=1.0.0",
4142
"anthropic>=0.76.0",
42-
"consilium>=0.1.0",
43+
"openadapt-consilium>=0.3.2",
4344
"openadapt-ml>=0.11.0",
4445
]
4546

@@ -102,7 +103,7 @@ Documentation = "https://github.com/OpenAdaptAI/openadapt-evals#readme"
102103
"Bug Tracker" = "https://github.com/OpenAdaptAI/openadapt-evals/issues"
103104

104105
[tool.uv.sources]
105-
consilium = { git = "https://github.com/OpenAdaptAI/openadapt-consilium.git" }
106+
openadapt-consilium = { git = "https://github.com/OpenAdaptAI/openadapt-consilium.git" }
106107
openadapt-ml = { path = "../openadapt-ml", editable = true }
107108

108109
[tool.hatch.build.targets.wheel]

0 commit comments

Comments
 (0)