Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
name: Pyodide cibuildwheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v3.2
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_PLATFORM: pyodide

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install requirements
run: apt-get update && apt-get install -y python3-dev python3-pip git ninja-build

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand All @@ -44,7 +44,7 @@ jobs:
name: PyLint

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand All @@ -68,7 +68,7 @@ jobs:
- python-version: "pypy3.11"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -122,14 +122,14 @@ jobs:
only: cp311-win_arm64

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0

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

- uses: pypa/cibuildwheel@v3.2
- uses: pypa/cibuildwheel@v3.3
with:
only: "${{ matrix.only }}"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: true

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Build SDist
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -93,14 +93,14 @@ jobs:
build: "*musllinux*"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true

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

- uses: pypa/cibuildwheel@v3.2
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_ARCHS: ${{ matrix.arch }}
Expand All @@ -124,14 +124,14 @@ jobs:
runs-on: [macos-14, macos-13]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true

- run: brew uninstall cmake; brew install cmake

- uses: pypa/cibuildwheel@v3.2
- uses: pypa/cibuildwheel@v3.3
env:
CIBW_PLATFORM: ios

Expand All @@ -153,7 +153,7 @@ jobs:
# matrix:
# runs-on: [ubuntu-latest, macos-latest]
# steps:
# - uses: actions/checkout@v5
# - uses: actions/checkout@v6
# with:
# fetch-depth: 0
# submodules: true
Expand Down
Loading