Skip to content

Commit 266f17d

Browse files
committed
Update wheel build jobs to use Maturin
Install only Maturin via pip during wheel builds, removing the uv sync --dev step. This change prevents the resolution of development-only dependencies, streamlining the build process.
1 parent 47d4f14 commit 266f17d

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,11 @@ jobs:
143143
with:
144144
enable-cache: true
145145

146+
- name: Install build tooling
147+
run: uv pip install maturin
148+
146149
- name: Build Python package
147-
run: |
148-
uv sync --dev --no-install-package datafusion
149-
uv run --no-project maturin build --release --strip --features substrait --interpreter python
150+
run: uv run --no-project maturin build --release --strip --features substrait --interpreter python
150151

151152
- name: List Windows wheels
152153
if: matrix.os == 'windows-latest'
@@ -213,10 +214,11 @@ jobs:
213214
with:
214215
enable-cache: true
215216

217+
- name: Install build tooling
218+
run: uv pip install maturin
219+
216220
- name: Build Python package
217-
run: |
218-
uv sync --dev --no-install-package datafusion
219-
uv run --no-project maturin build --release --strip --features substrait --interpreter python
221+
run: uv run --no-project maturin build --release --strip --features substrait --interpreter python
220222

221223
- name: List Mac wheels
222224
run: find target/wheels/

0 commit comments

Comments
 (0)