Skip to content

Commit 931ae54

Browse files
committed
Update dependencies
1 parent 2814d93 commit 931ae54

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

{{ cookiecutter.project_name.lower().replace(' ', '-') }}/.pre-commit-config.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.6.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-json
66
- id: check-toml
77
- id: check-xml
88
- id: check-yaml
99
- id: check-added-large-files
10-
args: [--maxkb=10000]
10+
args: [ --maxkb=10000 ]
1111
- id: check-case-conflict
1212
- id: check-merge-conflict
1313
- id: check-executables-have-shebangs
@@ -20,8 +20,10 @@ repos:
2020
- id: fix-byte-order-marker
2121
- id: mixed-line-ending
2222
- id: trailing-whitespace
23+
- id: pretty-format-json
24+
args: [ --autofix, --no-ensure-ascii ]
2325

2426
- repo: https://github.com/astral-sh/ruff-pre-commit
25-
rev: v0.5.5
27+
rev: v0.11.8
2628
hooks:
2729
- id: ruff-format

{{ cookiecutter.project_name.lower().replace(' ', '-') }}/pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ pydantic = "^2.6.4"
1313
{%- endif %}
1414

1515
[tool.poetry.group.dev.dependencies] # https://python-poetry.org/docs/master/managing-dependencies/
16-
mypy = "^1.11.1"
17-
pre-commit = "^3.8.0"
18-
pytest = "^8.3.2"
16+
mypy = "^1.15.0"
17+
pre-commit = "^4.2.0"
18+
pytest = "^8.3.5"
1919
pytest-cov = "^5.0.0"
20-
coverage = "^7.6.0"
21-
typeguard = "^4.3.0"
22-
ruff = "^0.5.5"
23-
safety = "^3.2.4"
24-
deptry = "^0.18.0"
20+
coverage = "^7.8.0"
21+
typeguard = "^4.4.2"
22+
ruff = "^0.11.8"
23+
safety = "^3.4.0"
24+
deptry = "^0.23.0"
2525
{%- if cookiecutter.git_platform == 'gitlab' %}
26-
mypy-gitlab-code-quality = "^1.1.0"
26+
mypy-gitlab-code-quality = "^1.3.0"
2727
{%- endif %}
2828

2929
[tool.mypy] # https://mypy.readthedocs.io/en/latest/config_file.html#using-a-pyproject-toml-file

0 commit comments

Comments
 (0)