We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ed0a7a commit e692618Copy full SHA for e692618
1 file changed
cibuildwheel/platforms/ios.py
@@ -245,6 +245,13 @@ def cross_virtualenv(
245
print(f"{tool!r} will be included in the cross-build environment (using {original})")
246
(xbuild_tools_path / tool).symlink_to(original)
247
248
+ # build[uv] runs `python -m build --installer=uv`, and build resolves `uv`
249
+ # from PATH. Ensure uv is available within the isolated tool path.
250
+ if use_uv:
251
+ uv_binary = find_uv()
252
+ if uv_binary is not None:
253
+ (xbuild_tools_path / "uv").symlink_to(uv_binary.resolve())
254
+
255
env["PATH"] = os.pathsep.join(
256
[
257
# The target python's binary directory
0 commit comments