Skip to content

Commit eeb88bd

Browse files
committed
Add deps for build
1 parent a33d110 commit eeb88bd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,9 @@ jobs:
9090
uses: astral-sh/setup-uv@v5
9191

9292
- name: Build Python package
93-
run: uv run --no-project maturin build --release --strip --features substrait --uv
93+
run: |
94+
uv sync --dev --no-install-package datafusion
95+
uv run --no-project maturin build --release --strip --features substrait --uv
9496
9597
- name: List Windows wheels
9698
if: matrix.os == 'windows-latest'
@@ -143,7 +145,9 @@ jobs:
143145
uses: astral-sh/setup-uv@v5
144146

145147
- name: Build Python package
146-
run: uv run --no-project maturin build --release --strip --features substrait --uv
148+
run: |
149+
uv sync --dev --no-install-package datafusion
150+
uv run --no-project maturin build --release --strip --features substrait --uv
147151
148152
- name: List Mac wheels
149153
run: find target/wheels/

0 commit comments

Comments
 (0)