Skip to content

Commit 579d0d9

Browse files
committed
Use build[uv] as the build frontend
1 parent d6ee694 commit 579d0d9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/cd-wheel.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,18 @@ jobs:
158158
echo SOURCE_DATE_EPOCH=$SOURCE_DATE_EPOCH >> $GITHUB_ENV
159159
echo $(git log -1 --pretty=%ci) [timestamp=$SOURCE_DATE_EPOCH]
160160
161+
- id: setup-uv
162+
if: ${{ runner.os == 'macOS' }}
163+
run: brew install uv
164+
161165
- id: build
162166
uses: pypa/[email protected]
163167
timeout-minutes: 360
164168
with:
165169
package-dir: package
166170
output-dir: wheelhouse
167171
env:
168-
CIBW_BUILD_FRONTEND: "build"
172+
CIBW_BUILD_FRONTEND: "build[uv]"
169173
CIBW_BUILD: "cp312-*"
170174
CIBW_SKIP: "*musllinux*"
171175
CIBW_ARCHS: "${{ matrix.arch }}"

cibw-check-mpi.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/bin/bash
22
set -euo pipefail
33

4-
pkgname=$(pip list | awk '/mpich|openmpi/ {print $1}')
5-
mpiname=${pkgname%_*}
4+
mpiname="${MPINAME:-mpich}"
65

76
tempdir="$(mktemp -d)"
87
trap 'rm -rf $tempdir' EXIT

0 commit comments

Comments
 (0)