Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/cibw-cc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ jobs:
- if: matrix.platform == 'android'
run: pipx install patchelf

- uses: pypa/cibuildwheel@v3.3
- uses: pypa/cibuildwheel@v3.4
env:
CIBW_PLATFORM: ${{ matrix.platform }}
CIBW_ARCHS: ${{ matrix.archs || 'auto' }}

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.platform }}-${{ matrix.os }}
path: dist/*.whl
2 changes: 1 addition & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v6

- name: Get conda
uses: conda-incubator/setup-miniconda@v3.3.0
uses: conda-incubator/setup-miniconda@v4.0.0
with:
python-version: ${{ matrix.python-version }}
channels: conda-forge
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: cibw-sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
}
shell: pwsh

- uses: pypa/cibuildwheel@v3.3
- uses: pypa/cibuildwheel@v3.4
env:
CIBW_ENABLE: cpython-prerelease
CIBW_SKIP: "cp39-win_arm64 cp310-win_arm64 cp311-win_arm64 cp39-win32 cp310-win32 cp311-win32 cp312-win32"
Expand All @@ -91,7 +91,7 @@ jobs:
run: git diff --exit-code
shell: bash

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: cibw-wheels-${{ matrix.os }}
path: wheelhouse/*.whl
Expand All @@ -112,14 +112,14 @@ jobs:
with:
python-version: "3.x"

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
pattern: cibw-*
merge-multiple: true
path: dist

- name: Generate artifact attestation for sdist and wheels
uses: actions/attest-build-provenance@v3
uses: actions/attest-build-provenance@v4
with:
subject-path: "dist/*"

Expand Down