Skip to content

Commit

Permalink
Merge pull request #397 from aitomatic/deps/upgrade
Browse files Browse the repository at this point in the history
upgrade dependencies
  • Loading branch information
TheVinhLuong102 authored Dec 15, 2024
2 parents c7a16ee + 6f1b793 commit 4185e51
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ ignore = [
"RUF017", # Avoid quadratic list summation"
"RUF018", # avoid assignment expressions in `assert` statements
"RUF022", # __all__` is not sorted
"RUF051", # Use `pop` instead of `key in dict` followed by `del dict[key]`
"RUF100", # unused `noqa` directive
"S101", # use of `assert` detected
"S106", # possible hardcoded password assigned to argument
Expand Down
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exclude = [

[tool.poetry.group.dev.dependencies]
ipykernel = ">=6.29"
notebook = ">=7.2"
notebook = ">=7.3"

[tool.poetry.group.docs.dependencies]
sphinx = ">=8.1"
Expand All @@ -70,7 +70,7 @@ python = ">=3.12,<3.14"
# Llama interface
huggingface-hub = ">=0.26"
# OpenAI interface
openai = ">=1.55"
openai = ">=1.57"
# LlamaIndex & related
llama-index = ">=0.12"
llama-index-embeddings-azure-openai = ">=0.3"
Expand All @@ -85,17 +85,17 @@ adlfs = ">=2024.7" # Azure Data Lake
gcsfs = ">=2024.10" # Google Cloud Storage
s3fs = ">=2024.10" # S3
# misc / other
certifi = ">2023.8"
google-api-python-client = ">=2.154"
certifi = ">2024.12"
google-api-python-client = ">=2.155"
googlesearch-python = ">=1.2"
httpx = ">=0.27"
httpx = ">=0.28"
loguru = ">=0.7"
pydantic = ">=2.10"
python-dotenv = ">=1.0"
tqdm = ">=4.67"

# optional dependencies required by extras
streamlit = {version = ">=1.40", optional = true}
streamlit = {version = ">=1.41", optional = true}
streamlit-extras = {version = ">=0.5", optional = true}
streamlit-mic-recorder = {version = ">=0.0.8", optional = true}

Expand Down Expand Up @@ -142,6 +142,7 @@ disable = [
"relative-beyond-top-level",
"too-few-public-methods",
"too-many-positional-arguments",
"unexpected-keyword-arg",
"unknown-option-value",
"unnecessary-pass",
]
Expand Down

0 comments on commit 4185e51

Please sign in to comment.