Skip to content

Commit 02972ae

Browse files
committed
* update 3
1 parent 64243f7 commit 02972ae

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ jobs:
4646
run: |
4747
set -euxo pipefail
4848
mkdir -p ~/Library/Caches/cibuildwheel
49-
test -f ~/Library/Caches/cibuildwheel/virtualenv-20.27.1.pyz || \
49+
if [ ! -f ~/Library/Caches/cibuildwheel/virtualenv-20.27.1.pyz ]; then
5050
curl -fL --retry 8 --retry-delay 5 --retry-all-errors \
5151
"https://github.com/pypa/get-virtualenv/blob/20.27.1/public/virtualenv.pyz?raw=true" \
5252
-o ~/Library/Caches/cibuildwheel/virtualenv-20.27.1.pyz
53+
fi
5354
5455
- name: Build wheels
5556
uses: pypa/cibuildwheel@v2.22
@@ -60,7 +61,7 @@ jobs:
6061
CIBW_ARCHS_MACOS: x86_64 arm64
6162
CIBW_BEFORE_BUILD: ./build.sh
6263
CIBW_BUILD_VERBOSITY: 1
63-
CIBW_DEPENDENCY_VERSIONS: "packages: virtualenv==20.27.1"
64+
CIBW_DEPENDENCY_VERSIONS: latest
6465

6566
- uses: actions/upload-artifact@v4
6667
with:

0 commit comments

Comments
 (0)