Bump versions to 1.14.8a2

This commit is contained in:
Vinicius Brasil
2026-06-18 16:06:42 -07:00
parent bc2c2a858c
commit aa292bbdd5
16 changed files with 19 additions and 19 deletions

View File

@@ -717,8 +717,8 @@ def test_json_create_provider_preselects_default_model(tmp_path, monkeypatch):
pyproject = tomli.loads((tmp_path / "json_crew" / "pyproject.toml").read_text())
dependency = pyproject["project"]["dependencies"][0]
assert dependency == "crewai[tools]==1.14.8a1"
assert Version("1.14.8a1") in Requirement(dependency).specifier
assert dependency == "crewai[tools]==1.14.8a2"
assert Version("1.14.8a2") in Requirement(dependency).specifier
assert pyproject["tool"]["hatch"]["build"]["targets"]["wheel"][
"only-include"
] == ["agents", "crew.jsonc", "tools", "knowledge", "skills"]

View File

@@ -26,7 +26,7 @@ def test_missing_crewai_package_shows_full_install_hint(monkeypatch):
message = exc_info.value.message
assert "CrewAI CLI is installed without the `crewai` package" in message
assert (
"uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a1'"
"uv tool install --force --prerelease=allow 'crewai[tools]==1.14.8a2'"
in message
)
assert "quotes are required in zsh" in message