Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

fix(deps): update ruff to v0.10.0 #5

Merged
merged 2 commits into from
Mar 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ repos:
- '@biomejs/[email protected]'

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.10
rev: v0.10.0
hooks:
- id: ruff
args:
Expand Down
2 changes: 1 addition & 1 deletion pypacter-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ devel-types = [
"pydantic~=2.9",
]
devel-test = ["pytest", "pytest-cov", "coverage[toml]", "uvicorn"]
devel = ["pypacter-api[devel-types,devel-test]", "ruff==0.9.10"]
devel = ["pypacter-api[devel-types,devel-test]", "ruff==0.10.0"]

################################################################################
## Build System Configuration
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ devel-types = ["mypy==1.15.0", "pydantic~=2.9", "types-pyyaml", "types-pygments"
devel = [
"pypacter[devel-test,devel-types]",
"pypacter-api[devel]",
"ruff==0.9.10",
"ruff==0.10.0",
"ipykernel",
]

Expand Down
2 changes: 1 addition & 1 deletion src/pypacter/reviewer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def __init__(self) -> None:
+ CODE_TEMPLATE
)
self.chain = typing.cast(
RunnableSerializable[dict[str, str], Recommendations],
"RunnableSerializable[dict[str, str], Recommendations]",
self.prompt_template | DEFAULT_MODEL | parser,
)

Expand Down