From 26030abb7073d01b696445467b150271154b46d9 Mon Sep 17 00:00:00 2001 From: ccurme Date: Fri, 20 Jun 2025 17:58:39 -0400 Subject: [PATCH] infra: temporarily drop OpenAI from core release test matrix (#31693) 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. Our test for computer use started raising 500 error at some point during the day today (test passed as part of scheduled test job in the morning): > InternalServerError: Error code: 500 - {'error': {'message': 'An error occurred while processing your request. You can retry your request, or contact us through our help center at help.openai.com if the error persists. Will revert this change after we release langchain-core. --- .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 2c0cd53716f..42c17d5b215 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 }}