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