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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
env:
PYTHON_COVREPORTS_VERSION: "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_pyodide_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Build pyodide/wasm wheels
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.10.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
REQUIRES_NUMBA: false
REQUIRES_JAX: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- ["cp312","3.12"]
- ["cp313","3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install GSL (Windows / Mac OS x86_64)
uses: mamba-org/setup-micromamba@v2
if: matrix.buildplat[1] == 'win' || matrix.buildplat[1] == 'macosx'
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- ["cp312","3.12"]
- ["cp313","3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: mkdir wheelhouse
- uses: actions/download-artifact@v5
with:
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# check-out this repository
- uses: actions/checkout@v4
- uses: actions/checkout@v5
# Setup python
- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -204,7 +204,7 @@ jobs:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.event_name == 'release' && github.event.action == 'created'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: |
mkdir tmp_wheelhouse
mkdir wheelhouse
Expand All @@ -223,7 +223,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event_name != 'release' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: |
mkdir tmp_wheelhouse
mkdir wheelhouse
Expand Down
Loading