Skip to content

Commit

Permalink
v2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Oct 15, 2024
1 parent 6090307 commit 8b1ed2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"nest_asyncio",
"openai",
"pgvector",
"phidata[aws]==2.5.0",
"phidata[aws]==2.5.1",
"pillow",
"psycopg[binary]",
"pypdf",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ openai==1.51.2
packaging==24.1
pandas==2.2.3
pgvector==0.3.5
phidata==2.5.0
phidata==2.5.1
pillow==11.0.0
pluggy==1.5.0
primp==0.6.4
Expand Down
4 changes: 2 additions & 2 deletions scripts/generate_requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ if [[ "$#" -eq 1 ]] && [[ "$1" = "upgrade" ]];
then
print_heading "Generating requirements.txt with upgrade"
UV_CUSTOM_COMPILE_COMMAND="./scripts/generate_requirements.sh upgrade" \
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache --upgrade -o ${REPO_ROOT}/requirements.txt
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache-dir --upgrade -o ${REPO_ROOT}/requirements.txt
else
print_heading "Generating requirements.txt"
uv pip compile pyproject.toml -o requirements.txt
UV_CUSTOM_COMPILE_COMMAND="./scripts/generate_requirements.sh" \
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache -o ${REPO_ROOT}/requirements.txt
uv pip compile ${REPO_ROOT}/pyproject.toml --no-cache-dir -o ${REPO_ROOT}/requirements.txt
fi

0 comments on commit 8b1ed2f

Please sign in to comment.