Skip to content

Commit 2a1171e

Browse files
committed
fix: pass correct Python to uv
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 035622e commit 2a1171e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
output-dir: wheelhouse_config_file
110110
config-file: sample_proj/cibw.toml
111111

112-
- name: Check Action artefacts
112+
- name: Check Action artifacts
113113
shell: bash
114114
run: |
115115
test $(find wheelhouse -name '*.whl' | wc -l) -ge 1

cibuildwheel/linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def build_in_container(
345345
venv_dir = testing_temp_dir / "venv"
346346

347347
if use_uv:
348-
container.call(["uv", "venv", venv_dir], env=env)
348+
container.call(["uv", "venv", venv_dir, "--python", python_bin], env=env)
349349
else:
350350
# Use embedded dependencies from virtualenv to ensure determinism
351351
venv_args = ["--no-periodic-update", "--pip=embed"]

0 commit comments

Comments
 (0)