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
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
path: ./wheelhouse/*.whl
name: wheels-linux
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
run: |
python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
path: ./wheelhouse/*.whl
name: wheels-${{ matrix.os }}
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" }

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
path: ./wheelhouse/*.whl
name: wheels-windows-${{ matrix.architecture }}
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
pytest -s tests

- name: Upload SDist artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sdist
path: ./dist/*.tar.gz
Expand All @@ -224,7 +224,7 @@ jobs:

steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: "*"
path: dist
Expand Down