Skip to content

Commit f5420f1

Browse files
committed
ci: build pure wheels
1 parent 72533e8 commit f5420f1

File tree

1 file changed

+7
-16
lines changed

1 file changed

+7
-16
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,16 @@ jobs:
1010
matrix:
1111
# macos-13 is an intel runner, macos-14 is apple silicon
1212
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
13+
python-version: [3.11, 3.12, 3.13]
1314

1415
steps:
1516
- uses: actions/checkout@v4
1617

17-
- name: Set up QEMU
18-
if: runner.os == 'Linux' && runner.arch == 'X64'
19-
uses: docker/setup-qemu-action@v3
18+
- name: Install uv
19+
uses: astral-sh/setup-uv@v6
2020
with:
21-
platforms: all
21+
enable-cache: true
22+
python-version: {{ matrix.python-version }}
2223

23-
- name: Build wheels
24-
uses: pypa/[email protected]
25-
env:
26-
# configure cibuildwheel on Linux to build native archs ('auto'),
27-
# and to split the remaining architectures between the x86_64 and
28-
# ARM runners
29-
CIBW_ARCHS_LINUX: ${{ runner.arch == 'X64' && 'auto ppc64le s390x' || 'auto' }}
30-
31-
- uses: actions/upload-artifact@v4
32-
with:
33-
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
34-
path: ./wheelhouse/*.whl
24+
- name: Build
25+
run: uv sync --locked --all-extras --dev

0 commit comments

Comments
 (0)