Skip to content

Commit a56bdbc

Browse files
committed
ci: update tools
1 parent 865d2e8 commit a56bdbc

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
repos:
22
- repo: https://github.com/astral-sh/ruff-pre-commit
3-
rev: v0.12.7
3+
rev: v0.14.10
44
hooks:
55
- id: ruff
66
args: [--fix]
77
- id: ruff-format
88
- repo: https://github.com/pre-commit/pre-commit-hooks
9-
rev: v5.0.0
9+
rev: v6.0.0
1010
hooks:
1111
- id: check-added-large-files
1212
- id: check-ast

src/ffpuppet/test_ffpuppet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def test_ffpuppet_16(tmp_path):
396396
with (
397397
FFPuppet() as ffp,
398398
HTTPTestServer() as srv,
399-
raises(LaunchError, match="'.+?' is invalid"),
399+
raises(LaunchError, match=r"'.+?' is invalid"),
400400
):
401401
ffp.launch(TESTFF_BIN, location=srv.get_addr(), prefs_js=prefs)
402402

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ skip_install = true
4040
commands =
4141
mypy --install-types --non-interactive {posargs}
4242
deps =
43-
mypy==v1.17.1
43+
mypy==v1.19.1
4444
usedevelop = true
4545

4646
[testenv:pylint]
4747
commands =
4848
pylint -j 0 {posargs}
4949
deps =
50-
pylint==3.3.7
50+
pylint==4.0.4
5151
usedevelop = true
5252

5353
[testenv:pypi]

0 commit comments

Comments
 (0)