From 092697de605d161c48729b7e18b1cbe42dd20d7b Mon Sep 17 00:00:00 2001 From: ccurme Date: Thu, 22 May 2025 12:07:45 -0400 Subject: [PATCH] infra: temporarily drop OpenAI from core release test matrix (#31318) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As part of core releases we run tests on the last released version of some packages (including langchain-openai) using the new version of langchain-core. We run langchain-openai's test suite as it was when it was last released. OpenAI has since updated their API— relaxing constraints on what schemas are supported when `strict=True`— causing these tests to break. They have since been fixed. But the old tests will continue to fail. Will revert this change after we release OpenAI today. --- .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 6f186379153..28bf0a589cc 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: [anthropic] fail-fast: false # Continue testing other partners if one fails env: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}