File tree Expand file tree Collapse file tree 4 files changed +14
-4
lines changed
llama-index-python-kvstore
llama-index-python-vectorstore Expand file tree Collapse file tree 4 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,8 @@ buildvariants:
175
175
expansions :
176
176
DIR : llama-index-python-vectorstore
177
177
REPO_NAME : llama_index
178
- CLONE_URL : https://github.com/run-llama/llama_index.git
178
+ # TODO: Update INTPYTHON-414
179
+ CLONE_URL : -b INTPYTHON-414 --single-branch https://github.com/blink1073/llama_index.git
179
180
DATABASE : llama_index_test_db
180
181
run_on :
181
182
- rhel87-small
Original file line number Diff line number Diff line change @@ -10,7 +10,10 @@ set -x
10
10
PYTHON_BINARY=$( find_python3)
11
11
$PYTHON_BINARY -c " import sys; print(f'Python version found: {sys.version_info}')"
12
12
13
- # Install Poetry into base python
13
+ # Install Poetry
14
+ $PYTHON_BINARY -m venv .venv
15
+ . .venv/bin/activate
16
+ PYTHON_BINARY=$( which python)
14
17
$PYTHON_BINARY -m pip install -U pip poetry
15
18
# Create a package specific poetry environment
16
19
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
Original file line number Diff line number Diff line change @@ -13,7 +13,10 @@ $PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}'
13
13
# shellcheck disable=SC2164
14
14
cd llama-index-integrations/storage/kvstore/llama-index-storage-kvstore-mongodb
15
15
16
- # Install Poetry into base python
16
+ # Install Poetry
17
+ $PYTHON_BINARY -m venv .venv
18
+ . .venv/bin/activate
19
+ PYTHON_BINARY=$( which python)
17
20
$PYTHON_BINARY -m pip install -U pip poetry
18
21
# Create a package specific poetry environment
19
22
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ $PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}'
12
12
# shellcheck disable=SC2164
13
13
cd llama-index-integrations/vector_stores/llama-index-vector-stores-mongodb
14
14
15
- # Install Poetry into base python
15
+ # Install Poetry
16
+ $PYTHON_BINARY -m venv .venv
17
+ . .venv/bin/activate
18
+ PYTHON_BINARY=$( which python)
16
19
$PYTHON_BINARY -m pip install -U pip poetry
17
20
# Create a package specific poetry environment
18
21
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
You can’t perform that action at this time.
0 commit comments