Skip to content
Merged
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
CIBW_BUILD: "*-musllinux_x86_64"
CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test-musl]' && python -m pytest -v tests"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-linux-x86_64
path: ./wheelhouse/*.whl
Expand All @@ -55,7 +55,7 @@ jobs:
CIBW_ARCHS_LINUX: aarch64
CIBW_BUILD: "*-manylinux_aarch64"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-linux-aarch64-manylinux
path: ./wheelhouse/*.whl
Expand All @@ -77,7 +77,7 @@ jobs:
CIBW_BUILD: "*-musllinux_aarch64"
CIBW_TEST_COMMAND: "cd {project} && pip install --prefer-binary '.[test-musl]' && python -m pytest -v tests"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-linux-aarch64-musllinux
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
CIBW_ENVIRONMENT: "LDFLAGS=-L$HOME/local/lib"
IGRAPH_CMAKE_EXTRA_ARGS: -DCMAKE_OSX_ARCHITECTURES=${{ matrix.cmake_arch }} ${{ matrix.cmake_extra_args }} -DCMAKE_PREFIX_PATH=$HOME/local

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-macos-${{ matrix.wheel_arch }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
limit-access-to-actor: true
wait-timeout-minutes: 5

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-wasm
path: ./dist/*.whl
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
IGRAPH_EXTRA_LIBRARIES: libxml2,lzma,zlib,iconv,charset,bcrypt
IGRAPH_EXTRA_DYNAMIC_LIBRARIES: wsock32,ws2_32

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: wheels-win-${{ matrix.wheel_arch }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
pip install '.[test]'
python -m pytest -v tests

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: sdist
path: dist/*.tar.gz
Expand Down
Loading