Skip to content

Commit 20f91e6

Browse files
authored
use the upstream uv action when testing wheels (#2580)
Our actions runs `uv sync` which seems to cause a [full rebuild](https://github.com/spiraldb/vortex/actions/runs/13636192164/job/38117129759).
1 parent 74b10c8 commit 20f91e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-plz.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
working-directory: pyvortex
8181
target: aarch64 # NB: aarch64 becomes arm64 in the wheel's platform tag.
8282
args: --release --interpreter python3.10
83-
- uses: spiraldb/actions/.github/actions/setup-uv@0.6.0
83+
- uses: astral-sh/setup-uv@v5
8484
- name: test wheel
8585
run: |
8686
set -ex
@@ -90,7 +90,7 @@ jobs:
9090
echo removing linux_x86_64 if it exists because PyPI will reject the package if it is present
9191
rm -f target/wheels/*linux_x86_64.whl
9292
93-
uv run pip install --no-deps --force-reinstall vortex-array --no-index --find-links target/wheels
93+
uv run pip install --force-reinstall vortex-array --no-index --find-links target/wheels
9494
9595
cd pyvortex/test
9696
uv run pytest
@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-latest
107107
steps:
108108
- uses: actions/checkout@v4
109-
- uses: spiraldb/actions/.github/actions/setup-uv@0.6.0
109+
- uses: astral-sh/setup-uv@v5
110110
- name: rust-toolchain
111111
shell: bash
112112
run: echo "version=$(cat rust-toolchain.toml | grep channel | awk -F'\"' '{print $2}')" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)