Skip to content

Commit 6026a68

Browse files
authored
Merge branch 'main' into no-wheel
2 parents d0cb03a + 9dd3488 commit 6026a68

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ 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:]
113-
process = Popen([*remove_cmd, "pip"])
112+
remove_cmd = [str(result.creator.exe), "-m", "pip", *remove_cmd[1:]]
113+
process = Popen([*remove_cmd, "pip", "wheel"])
114114
_, __ = process.communicate()
115115
assert not process.returncode
116116
# pip is greedy here, removing all packages removes the site-package too

0 commit comments

Comments
 (0)