fix: give uv the full python path (#2774)

* fix: give uv the full python path

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>

* Fix python binary path in Linux build script

I thought the dir was enough. Seems not.

---------

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2026-03-13 11:11:25 -04:00
committed by GitHub
parent 42c502093f
commit 4d4daefbd2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -315,7 +315,7 @@ def build_in_container(
[
"uv",
"build",
"--python=python",
f"--python={python_bin / 'python'}",
container_package_dir,
"--wheel",
f"--out-dir={built_wheel_dir}",
+1 -1
View File
@@ -517,7 +517,7 @@ def build(options: Options, tmp_path: Path) -> None:
call(
uv_path,
"build",
"--python=python",
f"--python={base_python}",
build_options.package_dir,
"--wheel",
f"--out-dir={built_wheel_dir}",
+1 -1
View File
@@ -510,7 +510,7 @@ def build(options: Options, tmp_path: Path) -> None:
call(
uv_path,
"build",
"--python=python",
f"--python={base_python}",
build_options.package_dir,
"--wheel",
f"--out-dir={built_wheel_dir}",