Skip to content

Commit 5307acf

Browse files
committed
uv requires two dashes
1 parent 49be265 commit 5307acf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ 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: uv run --no-project maturin build --release --strip --features substrait --uv
9494

9595
- name: List Windows wheels
9696
if: matrix.os == 'windows-latest'
@@ -143,7 +143,7 @@ jobs:
143143
uses: astral-sh/setup-uv@v5
144144

145145
- name: Build Python package
146-
run: uv run --no-project maturin build --release --strip --features substrait -uv
146+
run: uv run --no-project maturin build --release --strip --features substrait --uv
147147

148148
- name: List Mac wheels
149149
run: find target/wheels/

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
uv venv
6666
uv sync --dev --no-install-package datafusion --group docs
67-
uv run --no-project maturin develop -uv
67+
uv run --no-project maturin develop --uv
6868
6969
- name: Build docs
7070
run: |

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
RUST_BACKTRACE: 1
8282
run: |
8383
uv sync --dev --no-install-package datafusion
84-
uv run --no-project maturin develop -uv
84+
uv run --no-project maturin develop --uv
8585
uv run --no-project pytest -v .
8686
8787
- name: FFI unit tests

0 commit comments

Comments
 (0)