Skip to content
Open
Changes from 1 commit
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
Next Next commit
Fix failing GitHub Actions by upgrading virtualenv
  • Loading branch information
cclauss committed Apr 13, 2026
commit 886d92e6984c8df9ffa33e563651d04826e21ea1
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 All @@ -78,7 +78,7 @@ jobs:
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
- name: Build wheels
uses: pypa/cibuildwheel@v3.3.0
uses: pypa/cibuildwheel@v3.4.1
env:
# CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"
CIBW_ARCHS_LINUX: "x86_64 i686"
Expand All @@ -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 @@ -130,7 +130,7 @@ jobs:
CIBW_ENABLE: cpython-freethreading
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox"
- 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