Skip to content

Commit 808b540

Browse files
committed
ci: fix build wheel script for duckdb
1 parent b5f91bd commit 808b540

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

duckdb-extensions/scripts/build_wheel.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ def build_wheel(duckdb_platform: str) -> None:
3232

3333
dist_dir = ROOT / "dist"
3434
subprocess.run(
35-
[sys.executable, "-m", "hatchling", "build", "-t", "wheel"],
35+
["uv", "run", "python", "-m", "hatchling", "build", "-t", "wheel"],
3636
cwd=ROOT,
3737
check=True,
3838
)
3939

4040
for whl in dist_dir.glob("*.whl"):
4141
subprocess.run(
4242
[
43-
sys.executable,
43+
"uv",
44+
"run",
45+
"python",
4446
"-m",
4547
"wheel",
4648
"tags",

uv.lock

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)