Skip to content

Commit 2441e33

Browse files
[pre-commit.ci] pre-commit autoupdate (#291)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 77ea83b commit 2441e33

File tree

4 files changed

+11
-14
lines changed

4 files changed

+11
-14
lines changed

.github/workflows/check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: check
22
on:
3+
workflow_dispatch:
34
push:
5+
branches: "main"
46
tags-ignore: ["**"]
57
pull_request:
68
schedule:
@@ -18,7 +20,7 @@ jobs:
1820
fail-fast: false
1921
matrix:
2022
py:
21-
- "3.12.0-rc.1"
23+
- "3.12"
2224
- "3.11"
2325
- "3.10"
2426
- "3.9"

.pre-commit-config.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repos:
55
- id: end-of-file-fixer
66
- id: trailing-whitespace
77
- repo: https://github.com/astral-sh/ruff-pre-commit
8-
rev: "v0.1.6"
8+
rev: "v0.1.7"
99
hooks:
1010
- id: ruff
1111
args: [--fix, --exit-non-zero-on-fix]
@@ -19,15 +19,10 @@ repos:
1919
- id: tox-ini-fmt
2020
args: ["-p", "fix"]
2121
- repo: https://github.com/tox-dev/pyproject-fmt
22-
rev: "1.5.1"
22+
rev: "1.5.3"
2323
hooks:
2424
- id: pyproject-fmt
25-
additional_dependencies: ["tox>=4.11.3"]
26-
- repo: https://github.com/pre-commit/mirrors-prettier
27-
rev: "v3.1.0"
28-
hooks:
29-
- id: prettier
30-
args: ["--print-width=120", "--prose-wrap=always"]
25+
additional_dependencies: ["tox>=4.11.4"]
3126
- repo: meta
3227
hooks:
3328
- id: check-hooks-apply

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
build-backend = "hatchling.build"
33
requires = [
4-
"hatch-vcs>=0.3",
4+
"hatch-vcs>=0.4",
55
"hatchling>=1.18",
66
]
77

@@ -41,12 +41,12 @@ dynamic = [
4141
optional-dependencies.docs = [
4242
"furo>=2023.9.10",
4343
"sphinx>=7.2.6",
44-
"sphinx-autodoc-typehints!=1.23.4,>=1.24",
44+
"sphinx-autodoc-typehints!=1.23.4,>=1.25.2",
4545
]
4646
optional-dependencies.testing = [
4747
"covdefaults>=2.3",
4848
"coverage>=7.3.2",
49-
"diff-cover>=8",
49+
"diff-cover>=8.0.1",
5050
"pytest>=7.4.3",
5151
"pytest-cov>=4.1",
5252
"pytest-mock>=3.12",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ commands =
4646
[testenv:type]
4747
description = run type check on code base
4848
deps =
49-
mypy==1.6.1
49+
mypy==1.7.1
5050
set_env =
5151
{tty:MYPY_FORCE_COLOR = 1}
5252
commands =
@@ -59,7 +59,7 @@ skip_install = true
5959
deps =
6060
covdefaults>=2.3
6161
coverage[toml]>=7.3.2
62-
diff-cover>=8
62+
diff-cover>=8.0.1
6363
extras =
6464
parallel_show_output = true
6565
pass_env =

0 commit comments

Comments
 (0)