Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion py/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,11 @@ def test_pydantic_ai_wrap_openai(session, version):
"""Test pydantic_ai with wrap_openai() approach - supports older versions."""
_install_test_deps(session)
_install_matrix_dep(session, "pydantic-ai-wrap-openai", version)
# pydantic-ai 0.1.9 unconditionally imports ``from opentelemetry._events import Event``.
# The ``_events`` module was removed from ``opentelemetry-api`` in 1.40+, so a fresh
# resolution on newer opentelemetry releases picks a version that breaks import.
if version == "0.1.9":
session.install("opentelemetry-api<1.40", silent=SILENT_INSTALLS)
_run_tests(session, f"{INTEGRATION_DIR}/pydantic_ai/test_pydantic_ai_wrap_openai.py", version=version)


Expand Down Expand Up @@ -513,7 +518,6 @@ def test_google_adk(session, version):
_install_test_deps(session)
_install_matrix_dep(session, "google-adk", version)
_run_tests(session, f"{INTEGRATION_DIR}/adk/test_adk.py", version=version)
_run_tests(session, f"{INTEGRATION_DIR}/adk/test_adk_mcp_tool.py", version=version)


LANGCHAIN_VERSIONS = _get_matrix_versions("langchain-core")
Expand Down

This file was deleted.

Loading