Skip to content

Commit 7fa93c7

Browse files
committed
Revert "Pin poetry<2"
This reverts commit 8184443.
1 parent 8184443 commit 7fa93c7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

chatgpt-retrieval-plugin/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}'
1818
$PYTHON_BINARY -m venv .venv
1919
. .venv/bin/activate
2020
PYTHON_BINARY=$(which python)
21-
$PYTHON_BINARY -m pip install -U pip "poetry<2"
21+
$PYTHON_BINARY -m pip install -U pip poetry
2222
# Create a package specific poetry environment
2323
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2424
# Activate the poetry env, which itself does not include poetry

docarray/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ $PYTHON_BINARY -c "import sys; print(f'Python version found: {sys.version_info}'
2020
$PYTHON_BINARY -m venv venv
2121
. venv/bin/activate
2222
# Install Poetry
23-
pip install -U pip "poetry<2"
23+
pip install -U pip poetry
2424
# Recreate the poetry lock file
2525
poetry lock --no-update
2626
# Install from pyproject.toml into package specific environment

langchain-python/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cd libs/langchain-mongodb
1818
$PYTHON_BINARY -m venv venv_pipeline
1919
source venv_pipeline/bin/activate
2020

21-
pip install "poetry<2"
21+
pip install poetry
2222

2323
poetry lock --no-update
2424

llama-index-python-kvstore/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd llama-index-integrations/storage/kvstore/llama-index-storage-kvstore-mongodb
2020
$PYTHON_BINARY -m venv .venv
2121
. .venv/bin/activate
2222
PYTHON_BINARY=$(which python)
23-
$PYTHON_BINARY -m pip install -U pip "poetry<2"
23+
$PYTHON_BINARY -m pip install -U pip poetry
2424
# Create a package specific poetry environment
2525
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2626
# Activate the poetry env, which itself does not include poetry

llama-index-python-vectorstore/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cd llama-index-integrations/vector_stores/llama-index-vector-stores-mongodb
2020
$PYTHON_BINARY -m venv .venv
2121
. .venv/bin/activate
2222
PYTHON_BINARY=$(which python)
23-
$PYTHON_BINARY -m pip install -U pip "poetry<2"
23+
$PYTHON_BINARY -m pip install -U pip poetry
2424
# Create a package specific poetry environment
2525
$PYTHON_BINARY -m poetry env use $PYTHON_BINARY
2626
# Activate the poetry env, which itself does not include poetry

0 commit comments

Comments
 (0)