From 6794422b85e37cedc133f37ead28cfd6c967bf98 Mon Sep 17 00:00:00 2001 From: ccurme Date: Mon, 21 Jul 2025 12:06:52 -0300 Subject: [PATCH] chore(infra): drop anthropic from core test matrix (#32146) Stricter JSON schema validation broke a test. Test was fixed in https://github.com/langchain-ai/langchain/pull/32145. Core release runs old tests (i.e., last released version of langchain-anthropic) against new core. So we bypass anthropic for release. Will revert after. --- .github/workflows/_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 56cf99cf823..8bec12197b5 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -340,7 +340,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - partner: [openai, anthropic] + partner: [openai] fail-fast: false # Continue testing other partners if one fails env: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}