File tree Expand file tree Collapse file tree 6 files changed +8
-7
lines changed
llama-index-python-kvstore
llama-index-python-vectorstore Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ $PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2424# Activate the poetry env, which itself does not include poetry
2525. " $( $PYTHON_BINARY -m poetry env info --path) /bin/activate"
2626# Recreate the poetry lock file
27- $PYTHON_BINARY -m poetry lock --no-update
27+ $PYTHON_BINARY -m poetry lock
2828# Install from pyproject.toml into package specific environment
2929$PYTHON_BINARY -m poetry install --with dev
3030
Original file line number Diff line number Diff line change @@ -17,15 +17,16 @@ PYTHON_BINARY=$(find_python3)
1717$PYTHON_BINARY -c " import sys; print(f'Python version found: {sys.version_info}')"
1818
1919# Create and activate an isolated python venv environment
20+ set -x
2021$PYTHON_BINARY -m venv venv
2122. venv/bin/activate
2223# Install Poetry
2324pip install -U pip poetry
2425# Recreate the poetry lock file
25- poetry lock --no-update
26+ # poetry lock
2627# Install from pyproject.toml into package specific environment
2728poetry install --with dev --extras mongo
28-
29+ set +x
2930
3031# Run tests. Sensitive variables in Evergreen come from Evergeen project: ai-ml-pipeline-testing/
3132# shellcheck disable=SC2154
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd libs/langchain-mongodb
2020
2121pip install poetry
2222
23- poetry lock --no-update
23+ poetry lock
2424
2525poetry install --with dev
2626
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd libs/langgraph-checkpoint-mongodb
2020
2121pip install poetry
2222
23- poetry lock --no-update
23+ poetry lock
2424
2525poetry install --with dev
2626
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ $PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2828# PYTHON-4522: Will fix requirement in llama-index repo
2929$PYTHON_BINARY -m poetry add motor
3030# Recreate the poetry lock file
31- $PYTHON_BINARY -m poetry lock --no-update
31+ $PYTHON_BINARY -m poetry lock
3232# Install from pyproject.toml into package specific environment
3333$PYTHON_BINARY -m poetry install --with dev
3434
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ $PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2626# Activate the poetry env, which itself does not include poetry
2727. " $( $PYTHON_BINARY -m poetry env info --path) /bin/activate"
2828# Recreate the poetry lock file
29- $PYTHON_BINARY -m poetry lock --no-update
29+ $PYTHON_BINARY -m poetry lock
3030# Install from pyproject.toml into package specific environment
3131$PYTHON_BINARY -m poetry install --with dev
3232
You can’t perform that action at this time.
0 commit comments