Skip to content

Commit 9dd3488

Browse files
authored
Merge pull request #2867 from pypa/pre-commit-ci-update-config
2 parents 96d83f4 + 58495c9 commit 9dd3488

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
@@ -5,7 +5,7 @@ repos:
55
- id: end-of-file-fixer
66
- id: trailing-whitespace
77
- repo: https://github.com/python-jsonschema/check-jsonschema
8-
rev: 0.32.1
8+
rev: 0.33.0
99
hooks:
1010
- id: check-github-workflows
1111
args: ["--verbose"]
@@ -24,7 +24,7 @@ repos:
2424
hooks:
2525
- id: pyproject-fmt
2626
- repo: https://github.com/astral-sh/ruff-pre-commit
27-
rev: "v0.11.2"
27+
rev: "v0.11.5"
2828
hooks:
2929
- id: ruff-format
3030
- id: ruff

tests/unit/seed/embed/test_bootstrap_link_via_app_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def test_seed_link_via_app_data(tmp_path, coverage_env, current_fastest, copies)
109109

110110
# Windows does not allow removing a executable while running it, so when uninstalling pip we need to do it via
111111
# python -m pip
112-
remove_cmd = [str(result.creator.exe), "-m", "pip"] + remove_cmd[1:]
112+
remove_cmd = [str(result.creator.exe), "-m", "pip", *remove_cmd[1:]]
113113
process = Popen([*remove_cmd, "pip", "wheel"])
114114
_, __ = process.communicate()
115115
assert not process.returncode

0 commit comments

Comments
 (0)