Skip to content

Commit

Permalink
packages updated
Browse files Browse the repository at this point in the history
  • Loading branch information
davorrunje committed Jan 20, 2025
1 parent d3cc09a commit 2bdc664
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ graph-rag-falkor-db = [

neo4j = [
"docx2txt==0.8",
"llama-index==0.12.5",
"llama-index-graph-stores-neo4j==0.4.2",
"llama-index-core==0.12.5",
"llama-index-readers-web==0.3.3",
"llama-index==0.12.11",
"llama-index-graph-stores-neo4j==0.4.5",
"llama-index-core==0.12.11",
"llama-index-readers-web==0.3.4",
]

# used for agentchat_realtime_swarm notebook and realtime agent twilio demo
Expand Down Expand Up @@ -195,12 +195,12 @@ docs = [
]

types = [
"mypy==1.9.0",
"mypy==1.14.1",
"pyautogen[test, jupyter-executor, interop]",
]

lint = [
"ruff==0.9.1",
"ruff==0.9.2",
"codespell==2.3.0",
"pyupgrade-directories==0.3.0",
]
Expand All @@ -209,7 +209,7 @@ dev = [
"pyautogen[lint,test,types,docs]",
"pre-commit==4.0.1",
"detect-secrets==1.5.0",
"uv==0.5.16",
"uv==0.5.21",
]


Expand Down
2 changes: 1 addition & 1 deletion test/tools/test_function_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def f(a: Annotated[str, "Parameter a"], b=1, c: Annotated[float, "Parameter c"]
typed_signature = get_typed_signature(f)
param_annotations = get_param_annotations(typed_signature)

assert param_annotations == expected, param_annotations
assert param_annotations == expected, param_annotations # type: ignore[comparison-overlap]


def test_get_missing_annotations() -> None:
Expand Down

0 comments on commit 2bdc664

Please sign in to comment.