File tree 6 files changed +8
-7
lines changed
llama-index-python-kvstore
llama-index-python-vectorstore
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
24
24
# Activate the poetry env, which itself does not include poetry
25
25
. " $( $PYTHON_BINARY -m poetry env info --path) /bin/activate"
26
26
# Recreate the poetry lock file
27
- $PYTHON_BINARY -m poetry lock --no-update
27
+ $PYTHON_BINARY -m poetry lock
28
28
# Install from pyproject.toml into package specific environment
29
29
$PYTHON_BINARY -m poetry install --with dev
30
30
Original file line number Diff line number Diff line change @@ -17,15 +17,16 @@ PYTHON_BINARY=$(find_python3)
17
17
$PYTHON_BINARY -c " import sys; print(f'Python version found: {sys.version_info}')"
18
18
19
19
# Create and activate an isolated python venv environment
20
+ set -x
20
21
$PYTHON_BINARY -m venv venv
21
22
. venv/bin/activate
22
23
# Install Poetry
23
24
pip install -U pip poetry
24
25
# Recreate the poetry lock file
25
- poetry lock --no-update
26
+ # poetry lock
26
27
# Install from pyproject.toml into package specific environment
27
28
poetry install --with dev --extras mongo
28
-
29
+ set +x
29
30
30
31
# Run tests. Sensitive variables in Evergreen come from Evergeen project: ai-ml-pipeline-testing/
31
32
# shellcheck disable=SC2154
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd libs/langchain-mongodb
20
20
21
21
pip install poetry
22
22
23
- poetry lock --no-update
23
+ poetry lock
24
24
25
25
poetry install --with dev
26
26
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cd libs/langgraph-checkpoint-mongodb
20
20
21
21
pip install poetry
22
22
23
- poetry lock --no-update
23
+ poetry lock
24
24
25
25
poetry install --with dev
26
26
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ $PYTHON_BINARY -m poetry env use $PYTHON_BINARY
28
28
# PYTHON-4522: Will fix requirement in llama-index repo
29
29
$PYTHON_BINARY -m poetry add motor
30
30
# Recreate the poetry lock file
31
- $PYTHON_BINARY -m poetry lock --no-update
31
+ $PYTHON_BINARY -m poetry lock
32
32
# Install from pyproject.toml into package specific environment
33
33
$PYTHON_BINARY -m poetry install --with dev
34
34
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ $PYTHON_BINARY -m poetry env use $PYTHON_BINARY
26
26
# Activate the poetry env, which itself does not include poetry
27
27
. " $( $PYTHON_BINARY -m poetry env info --path) /bin/activate"
28
28
# Recreate the poetry lock file
29
- $PYTHON_BINARY -m poetry lock --no-update
29
+ $PYTHON_BINARY -m poetry lock
30
30
# Install from pyproject.toml into package specific environment
31
31
$PYTHON_BINARY -m poetry install --with dev
32
32
You can’t perform that action at this time.
0 commit comments