Skip to content

Commit 3498fdc

Browse files
committed
Use build[uv] as the build frontend
1 parent d6ee694 commit 3498fdc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/cd-wheel.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ jobs:
137137
brew install libtool
138138
# unlink libevent
139139
brew unlink libevent || true
140+
# install uv
141+
brew install uv
140142
141143
- id: setup-python
142144
uses: actions/setup-python@v5
@@ -165,7 +167,7 @@ jobs:
165167
package-dir: package
166168
output-dir: wheelhouse
167169
env:
168-
CIBW_BUILD_FRONTEND: "build"
170+
CIBW_BUILD_FRONTEND: "build[uv]"
169171
CIBW_BUILD: "cp312-*"
170172
CIBW_SKIP: "*musllinux*"
171173
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)