File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ requires-python = ">=3.12"
77license = { text = " Apache-2.0" }
88authors = [{ name = " Agent Control Team" }]
99dependencies = [
10- " agent-control-models" ,
10+ " agent-control-models>=7.5.0 " ,
1111 " pydantic>=2.12.4" ,
1212 " google-re2>=1.1" ,
1313 " jsonschema>=4.0.0" ,
Original file line number Diff line number Diff line change 11import sys
2+ import tomllib
23from pathlib import Path
34
45SCRIPTS_DIR = Path (__file__ ).resolve ().parents [1 ]
@@ -50,3 +51,13 @@ def test_sync_dependency_floors_updates_internal_minimums(tmp_path: Path) -> Non
5051galileo = ["agent-control-evaluator-galileo>=7.6.0"]
5152""" .strip ()
5253 )
54+
55+
56+ def test_builtin_evaluators_manifest_keeps_models_floor_rewritable () -> None :
57+ builtin_pyproject = SCRIPTS_DIR .parent / "evaluators" / "builtin" / "pyproject.toml"
58+ with builtin_pyproject .open ("rb" ) as handle :
59+ manifest = tomllib .load (handle )
60+
61+ dependencies = manifest ["project" ]["dependencies" ]
62+
63+ assert "agent-control-models>=7.5.0" in dependencies
You can’t perform that action at this time.
0 commit comments