fix(infra): fix min version check (#32891)

Should no longer require `langchain-core>=(version in monorepo)`
This commit is contained in:
ccurme
2025-09-10 14:04:26 -04:00
committed by GitHub
parent f08dfb6f49
commit 67e651b592

View File

@@ -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 }}