Skip to content

Commit d2aec7a

Browse files
committed
🛠️ Fix(safety): Update use of httpx client with timeout
1 parent 3a89b10 commit d2aec7a

File tree

3 files changed

+528
-485
lines changed

3 files changed

+528
-485
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default_language_version:
44
python: python3.12
55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v4.6.0
7+
rev: v5.0.0
88
hooks:
99
- id: check-case-conflict
1010
- id: check-docstring-first
@@ -21,15 +21,15 @@ repos:
2121
args: [ --markdown-linebreak-ext=md ]
2222

2323
- repo: https://github.com/asottile/pyupgrade
24-
rev: v3.17.0
24+
rev: v3.18.0
2525
hooks:
2626
- id: pyupgrade
2727
args:
2828
- --py3-plus
2929
- --keep-runtime-typing
3030

3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.6.7
32+
rev: v0.6.9
3333
hooks:
3434
# Run the linter.
3535
- id: ruff
@@ -45,20 +45,20 @@ repos:
4545

4646
# Using this mirror lets us use mypyc-compiled black, which is about 2x faster
4747
- repo: https://github.com/psf/black-pre-commit-mirror
48-
rev: 24.8.0
48+
rev: 24.10.0
4949
hooks:
5050
- id: black
5151
args: [ "--config", "pyproject.toml" ]
5252

5353
- repo: https://github.com/astral-sh/ruff-pre-commit
54-
rev: v0.6.7
54+
rev: v0.6.9
5555
hooks:
5656
# Run the formatter.
5757
- id: ruff-format
5858
args: [ "--config", "pyproject.toml" ]
5959

6060
- repo: https://github.com/pre-commit/mirrors-mypy
61-
rev: v1.11.2
61+
rev: v1.12.0
6262
hooks:
6363
- id: mypy
6464
args: [ "--config-file", "pyproject.toml" ]

0 commit comments

Comments
 (0)