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:
@@ -315,7 +315,7 @@ def build_in_container(
|
|||||||
[
|
[
|
||||||
"uv",
|
"uv",
|
||||||
"build",
|
"build",
|
||||||
"--python=python",
|
f"--python={python_bin / 'python'}",
|
||||||
container_package_dir,
|
container_package_dir,
|
||||||
"--wheel",
|
"--wheel",
|
||||||
f"--out-dir={built_wheel_dir}",
|
f"--out-dir={built_wheel_dir}",
|
||||||
|
|||||||
@@ -517,7 +517,7 @@ def build(options: Options, tmp_path: Path) -> None:
|
|||||||
call(
|
call(
|
||||||
uv_path,
|
uv_path,
|
||||||
"build",
|
"build",
|
||||||
"--python=python",
|
f"--python={base_python}",
|
||||||
build_options.package_dir,
|
build_options.package_dir,
|
||||||
"--wheel",
|
"--wheel",
|
||||||
f"--out-dir={built_wheel_dir}",
|
f"--out-dir={built_wheel_dir}",
|
||||||
|
|||||||
@@ -510,7 +510,7 @@ def build(options: Options, tmp_path: Path) -> None:
|
|||||||
call(
|
call(
|
||||||
uv_path,
|
uv_path,
|
||||||
"build",
|
"build",
|
||||||
"--python=python",
|
f"--python={base_python}",
|
||||||
build_options.package_dir,
|
build_options.package_dir,
|
||||||
"--wheel",
|
"--wheel",
|
||||||
f"--out-dir={built_wheel_dir}",
|
f"--out-dir={built_wheel_dir}",
|
||||||
|
|||||||
Reference in New Issue
Block a user