Skip to content

Commit a2d6ca6

Browse files
committed
chore: update pre-commit dependencies to latest versions
1 parent cd6f4f9 commit a2d6ca6

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

.github/coverage.svg

Lines changed: 1 addition & 1 deletion
Loading

.github/python-version.svg

Lines changed: 1 addition & 1 deletion
Loading

.github/tests.svg

Lines changed: 1 addition & 1 deletion
Loading

.pre-commit-config.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ default_language_version:
1111
repos:
1212
# Ruff - fast linter + formatter. We run the fixer first, then the formatter.
1313
- repo: https://github.com/astral-sh/ruff-pre-commit
14-
rev: v0.14.6
14+
rev: v0.14.10
1515
hooks:
1616
- id: ruff
1717
args: [--fix]
@@ -31,19 +31,19 @@ repos:
3131
# stricter environment using the project's venv if necessary.
3232
additional_dependencies:
3333
- msgpack>=1.1.0
34-
- pytest>=7.0.0
34+
- pytest>=9.0.1
3535
- pytest-asyncio>=1.3.0
36-
- aio-pika>=9.0.0
36+
- aio-pika>=9.5.8
3737
- asyncpg>=0.30.0
3838
- asyncmy>=0.2.10
39-
- redis>=4.0.0
40-
- aioboto3>=8.0.0
41-
- types-aiobotocore-sqs>=0.0.1
42-
- sqlalchemy>=2.0.0
43-
- django>=4.2
44-
- tortoise-orm>=0.25.0
39+
- redis>=7.1.0
40+
- aioboto3>=15.5.0
41+
- types-aioboto3[sqs]>=15.5.0
42+
- sqlalchemy>=2.0.44
43+
- django>=5.2.8
44+
- tortoise-orm>=0.25.1
4545
- uvloop>=0.22.1
46-
- rich>=13.0.0
46+
- rich>=14.2.0
4747

4848
# Standard hooks for whitespace, JSON/TOML/YAML checks and basic safety
4949
- repo: https://github.com/pre-commit/pre-commit-hooks

tests/integration/serializers/hooks/orm_integration/test_pipeline_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async def test_pipeline_handles_list_of_models(
100100
await postgres_conn.execute(
101101
"""
102102
INSERT INTO sqlalchemy_test_users (id, username, email, created_at)
103-
VALUES
103+
VALUES
104104
(9020, 'list_user1', 'list1@test.com', NOW()),
105105
(9021, 'list_user2', 'list2@test.com', NOW())
106106
ON CONFLICT (id) DO NOTHING

0 commit comments

Comments
 (0)