File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff 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 }}"
Original file line number Diff line number Diff line change 11#! /bin/bash
22set -euo pipefail
33
4- pkgname=$( pip list | awk ' /mpich|openmpi/ {print $1}' )
5- mpiname=${pkgname% _* }
4+ mpiname=" ${MPINAME:- mpich} "
65
76tempdir=" $( mktemp -d) "
87trap ' rm -rf $tempdir' EXIT
You can’t perform that action at this time.
0 commit comments