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/wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
id: windows_AMD64

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Build wheels for CPython
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.0
with:
output-dir: dist
env:
Expand All @@ -55,7 +55,7 @@ jobs:
CIBW_ENVIRONMENT: "LDFLAGS='-static-libstdc++'"
CIBW_BUILD_VERBOSITY: 1

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: wheels-${{ matrix.os }}-${{ matrix.id }}
path: ./dist/*.whl
Expand All @@ -64,12 +64,12 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: tarball
path: dist/*.tar.gz
Expand All @@ -86,13 +86,13 @@ jobs:
id-token: write
steps:
- name: Download sdist
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: tarball
path: dist

- name: Download wheels
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
path: dist
pattern: wheels-*
Expand Down