Skip to content

Commit 29ede21

Browse files
[pre-commit.ci] pre-commit autoupdate (#1171)
<!--pre-commit.ci start--> updates: - [github.com/crate-ci/typos: 1976b238f2710646b971e06bc25737249ee6406d → b04a3e939a8f2800a1dc330d7e569e7557879d41](crate-ci/typos@1976b23...b04a3e9) - [github.com/tox-dev/pyproject-fmt: 8a22e281b3f6d1bb298aaabfc165a943a943882c → 68b1ed526e7533ac54a2e42874b99ae6c26807a2](tox-dev/pyproject-fmt@8a22e28...68b1ed5) - [github.com/tox-dev/tox-ini-fmt: 4e2cb0e98735e1a57a027d9440b91663e31d10b0 → be26ee0d710a48f7c1acc1291d84082036207bd3](tox-dev/tox-ini-fmt@4e2cb0e...be26ee0) - [github.com/sphinx-contrib/sphinx-lint: ff671d6a030a3141634793e6d1e8909ab6091830 → e24bb0e1a3d80232373e49ca855721ec44e6340f](sphinx-contrib/sphinx-lint@ff671d6...e24bb0e) - [github.com/adamchainz/django-upgrade: c03f1b1e703cd967c5fd94e29c61f111e8b0eaf0 → 553731fe59437e0bd2cf18b10144116422bed259](adamchainz/django-upgrade@c03f1b1...553731f) - [github.com/astral-sh/ruff-pre-commit: 9c89adb347f6b973f4905a4be0051eb2ecf85dea → aad66557af3b56ba6d4d69cd1b6cba87cef50cbb](astral-sh/ruff-pre-commit@9c89adb...aad6655) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent ef0d28c commit 29ede21

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ repos:
1717
- id: end-of-file-fixer
1818
- id: trailing-whitespace
1919
- repo: https://github.com/crate-ci/typos
20-
rev: 1976b238f2710646b971e06bc25737249ee6406d # frozen: v1
20+
rev: b04a3e939a8f2800a1dc330d7e569e7557879d41 # frozen: v1
2121
hooks:
2222
- id: typos
2323
- repo: https://github.com/tox-dev/pyproject-fmt
24-
rev: 8a22e281b3f6d1bb298aaabfc165a943a943882c # frozen: v2.7.0
24+
rev: 68b1ed526e7533ac54a2e42874b99ae6c26807a2 # frozen: v2.11.0
2525
hooks:
2626
- id: pyproject-fmt
2727
- repo: https://github.com/tox-dev/tox-ini-fmt
28-
rev: 4e2cb0e98735e1a57a027d9440b91663e31d10b0 # frozen: 1.6.0
28+
rev: be26ee0d710a48f7c1acc1291d84082036207bd3 # frozen: 1.7.0
2929
hooks:
3030
- id: tox-ini-fmt
3131
- repo: https://github.com/rstcheck/rstcheck
@@ -36,11 +36,11 @@ repos:
3636
- sphinx==8.1.3
3737
- tomli==2.2.1
3838
- repo: https://github.com/sphinx-contrib/sphinx-lint
39-
rev: ff671d6a030a3141634793e6d1e8909ab6091830 # frozen: v1.0.0
39+
rev: e24bb0e1a3d80232373e49ca855721ec44e6340f # frozen: v1.0.1
4040
hooks:
4141
- id: sphinx-lint
4242
- repo: https://github.com/adamchainz/django-upgrade
43-
rev: c03f1b1e703cd967c5fd94e29c61f111e8b0eaf0 # frozen: 1.29.0
43+
rev: 553731fe59437e0bd2cf18b10144116422bed259 # frozen: 1.29.1
4444
hooks:
4545
- id: django-upgrade
4646
- repo: https://github.com/adamchainz/blacken-docs
@@ -50,7 +50,7 @@ repos:
5050
additional_dependencies:
5151
- black==25.1.0
5252
- repo: https://github.com/astral-sh/ruff-pre-commit
53-
rev: 9c89adb347f6b973f4905a4be0051eb2ecf85dea # frozen: v0.13.3
53+
rev: aad66557af3b56ba6d4d69cd1b6cba87cef50cbb # frozen: v0.14.3
5454
hooks:
5555
- id: ruff-check
5656
args: [ --fix ]

pyproject.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,20 @@ django51 = [ "django>=5.1a1,<5.2; python_version>='3.10'" ]
7676
django52 = [ "django>=5.2a1,<6; python_version>='3.10'" ]
7777
django60 = [ "django>=6a1,<6.1; python_version>='3.12'" ]
7878

79+
[tool.uv]
80+
conflicts = [
81+
[
82+
{ group = "django42" },
83+
{ group = "django50" },
84+
{ group = "django51" },
85+
{ group = "django52" },
86+
{ group = "django60" },
87+
],
88+
]
89+
90+
[tool.uv.sources]
91+
sphinx-build-compatibility = { git = "https://github.com/readthedocs/sphinx-build-compatibility", rev = "4f304bd4562cdc96316f4fec82b264ca379d23e0" }
92+
7993
[tool.ruff]
8094
lint.select = [
8195
# flake8-bugbear
@@ -167,17 +181,3 @@ ignore_directives = [
167181
"automodule",
168182
]
169183
report_level = "ERROR"
170-
171-
[tool.uv]
172-
conflicts = [
173-
[
174-
{ group = "django42" },
175-
{ group = "django50" },
176-
{ group = "django51" },
177-
{ group = "django52" },
178-
{ group = "django60" },
179-
],
180-
]
181-
182-
[tool.uv.sources]
183-
sphinx-build-compatibility = { git = "https://github.com/readthedocs/sphinx-build-compatibility", rev = "4f304bd4562cdc96316f4fec82b264ca379d23e0" }

0 commit comments

Comments
 (0)