Skip to content

Commit 67e651b

Browse files
authored
fix(infra): fix min version check (#32891)
Should no longer require `langchain-core>=(version in monorepo)`
1 parent f08dfb6 commit 67e651b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,8 @@ jobs:
289289
env:
290290
MIN_VERSIONS: ${{ steps.min-version.outputs.min-versions }}
291291
run: |
292-
VIRTUAL_ENV=.venv uv pip install --force-reinstall $MIN_VERSIONS --editable .
292+
VIRTUAL_ENV=.venv uv pip install --force-reinstall --editable .
293+
VIRTUAL_ENV=.venv uv pip install --force-reinstall $MIN_VERSIONS
293294
make tests
294295
working-directory: ${{ inputs.working-directory }}
295296

0 commit comments

Comments
 (0)