Skip to content

Commit 1b2cb76

Browse files
chore(deps): bump https://github.com/tox-dev/pyproject-fmt from v2.16.2 to 2.20.0 (#606)
* chore(deps): bump https://github.com/tox-dev/pyproject-fmt Bumps [https://github.com/tox-dev/pyproject-fmt](https://github.com/tox-dev/pyproject-fmt) from v2.16.2 to 2.20.0. - [Release notes](https://github.com/tox-dev/pyproject-fmt/releases) - [Commits](tox-dev/pyproject-fmt@v2.16.2...v2.20.0) --- updated-dependencies: - dependency-name: https://github.com/tox-dev/pyproject-fmt dependency-version: 2.20.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * chore: fix linting and sync lock file --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Martin Hjelmare <marhje52@gmail.com>
1 parent 5232d85 commit 1b2cb76

3 files changed

Lines changed: 1344 additions & 1344 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
- id: end-of-file-fixer
2929
- id: trailing-whitespace
3030
- repo: https://github.com/tox-dev/pyproject-fmt
31-
rev: "v2.16.2"
31+
rev: "v2.20.0"
3232
hooks:
3333
- id: pyproject-fmt
3434
- repo: https://github.com/astral-sh/uv-pre-commit

pyproject.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,23 @@ lint.isort.known-first-party = [ "camacqplugins", "tests" ]
8181
keep_full_version = true
8282
max_supported_python = "3.14"
8383

84+
[tool.mypy]
85+
check_untyped_defs = true
86+
disallow_any_generics = true
87+
disallow_incomplete_defs = true
88+
disallow_untyped_defs = true
89+
mypy_path = "src/"
90+
no_implicit_optional = true
91+
show_error_codes = true
92+
warn_unreachable = true
93+
warn_unused_ignores = true
94+
exclude = [
95+
"setup.py",
96+
]
97+
overrides = [
98+
{ module = "tests.*", allow_untyped_defs = true },
99+
]
100+
84101
[tool.pytest]
85102
minversion = "9.0"
86103
addopts = [
@@ -108,23 +125,6 @@ report.exclude_lines = [
108125
"raise NotImplementedError",
109126
]
110127

111-
[tool.mypy]
112-
check_untyped_defs = true
113-
disallow_any_generics = true
114-
disallow_incomplete_defs = true
115-
disallow_untyped_defs = true
116-
mypy_path = "src/"
117-
no_implicit_optional = true
118-
show_error_codes = true
119-
warn_unreachable = true
120-
warn_unused_ignores = true
121-
exclude = [
122-
"setup.py",
123-
]
124-
overrides = [
125-
{ module = "tests.*", allow_untyped_defs = true },
126-
]
127-
128128
[tool.semantic_release]
129129
allow_zero_version = true
130130
version_toml = [ "pyproject.toml:project.version" ]

0 commit comments

Comments
 (0)