Skip to content

Commit fac72f0

Browse files
[pre-commit.ci] pre-commit autoupdate (#1944)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.2 → v0.5.4](astral-sh/ruff-pre-commit@v0.5.2...v0.5.4) - [github.com/pre-commit/mirrors-mypy: v1.10.1 → v1.11.0](pre-commit/mirrors-mypy@v1.10.1...v1.11.0) * chore: type ignore no longer needed --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
1 parent d4c3321 commit fac72f0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ repos:
1414
- id: trailing-whitespace
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.5.2
17+
rev: v0.5.4
1818
hooks:
1919
- id: ruff
2020
args: ["--fix", "--show-fixes"]
2121
- id: ruff-format
2222

2323
- repo: https://github.com/pre-commit/mirrors-mypy
24-
rev: v1.10.1
24+
rev: v1.11.0
2525
hooks:
2626
- id: mypy
2727
name: mypy 3.8 on cibuildwheel/

cibuildwheel/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def build_in_directory(args: CommandLineArguments) -> None:
319319
# Python is buffering by default when running on the CI platforms, giving
320320
# problems interleaving subprocess call output with unflushed calls to
321321
# 'print'
322-
sys.stdout = Unbuffered(sys.stdout) # type: ignore[assignment]
322+
sys.stdout = Unbuffered(sys.stdout)
323323

324324
# create the cache dir before it gets printed & builds performed
325325
CIBW_CACHE_PATH.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)