Skip to content
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ci:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: check-toml
Expand All @@ -15,14 +15,14 @@ repos:
args: ['--maxkb=1000']

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.13
rev: v0.14.10
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.16.0
rev: v1.19.1
hooks:
- id: mypy
additional_dependencies: [
Expand Down
1 change: 0 additions & 1 deletion src/callosum/lower/dispatch_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from typing import Any, AsyncGenerator, Mapping, Optional, Tuple, Union

import attrs
import redis
import redis.asyncio

from ..abc import RawHeaderBody
Expand Down
1 change: 0 additions & 1 deletion src/callosum/lower/rpc_redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
from typing import Any, AsyncGenerator, Mapping, Optional, Tuple, Union

import attrs
import redis
import redis.asyncio

from ..abc import RawHeaderBody
Expand Down
1 change: 0 additions & 1 deletion src/callosum/lower/zeromq.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import attrs
import zmq
import zmq.asyncio
import zmq.constants
import zmq.utils.monitor
from zmq.utils import z85

Expand Down