From 67e651b59248e98e563220492b04c5f608975641 Mon Sep 17 00:00:00 2001 From: ccurme Date: Wed, 10 Sep 2025 14:04:26 -0400 Subject: [PATCH] fix(infra): fix min version check (#32891) Should no longer require `langchain-core>=(version in monorepo)` --- .github/workflows/_release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 1a227de4ae9..74742de995f 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -289,7 +289,8 @@ jobs: env: MIN_VERSIONS: ${{ steps.min-version.outputs.min-versions }} run: | - VIRTUAL_ENV=.venv uv pip install --force-reinstall $MIN_VERSIONS --editable . + VIRTUAL_ENV=.venv uv pip install --force-reinstall --editable . + VIRTUAL_ENV=.venv uv pip install --force-reinstall $MIN_VERSIONS make tests working-directory: ${{ inputs.working-directory }}