Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Build sdist
run: pipx run build --sdist
- name: Save sdist
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: cibw-sdist.tar.gz
path: dist/*.tar.gz
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
python-version: 3.x
- name: Set up QEMU # Needed to build aarch64 wheels
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4
with:
platforms: all

Expand Down Expand Up @@ -88,9 +88,9 @@ jobs:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: "cp*-musllinux*"
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64 *-*linux_{ppc64le,s390x} *-win_arm64"
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox"
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox virtualenv"
- name: Save wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -128,9 +128,9 @@ jobs:
CIBW_BUILD: ${{ matrix.cibw_build }}
CIBW_SKIP: "cp*-musllinux*"
CIBW_ENABLE: cpython-freethreading
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox"
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox virtualenv"
- name: Save wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
Expand All @@ -141,7 +141,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v8
with:
pattern: cibw-*
path: dist
Expand Down
Loading