Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
CIBW_PLATFORM: pyodide

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pyodide-wheel
path: wheelhouse/*.whl
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/setup-python@v6
with:
python-version: "3.9"
- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7
- name: Build and install kernel
run: uv run --group examples -m ipykernel install --user --name boost-hist
- name: Examples
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

- uses: rui314/setup-mold@v1

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- uses: hendrikmuhs/[email protected]
with:
Expand Down Expand Up @@ -127,13 +127,13 @@ jobs:
submodules: true
fetch-depth: 0

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- uses: pypa/[email protected]
with:
only: "${{ matrix.only }}"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: wheelhouse/*
name: test-wheels-${{ strategy.job-index }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Check metadata
run: pipx run twine check --strict dist/*.tar.gz

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: dist/*
name: wheels-sdist
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
fetch-depth: 0
submodules: true

- uses: astral-sh/setup-uv@v6
- uses: astral-sh/setup-uv@v7

- uses: pypa/[email protected]
env:
Expand All @@ -110,7 +110,7 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: wheelhouse/*.whl
name: wheels-${{ strategy.job-index }}
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: wheelhouse/*.whl
name: wheels-ios-${{ matrix.runs-on }}
Expand All @@ -167,7 +167,7 @@ jobs:
# shell: bash
#
# - name: Upload wheels
# uses: actions/upload-artifact@v4
# uses: actions/upload-artifact@v5
# with:
# path: wheelhouse/*.whl
# name: wheels-android-${{ matrix.runs-on }}
Expand All @@ -186,7 +186,7 @@ jobs:
contents: read

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: wheels-*
merge-multiple: true
Expand All @@ -211,7 +211,7 @@ jobs:
needs: [build_wheels]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: wheels-*
merge-multiple: true
Expand Down
Loading