File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff 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
162166163167 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 }}"
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