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 @@ -24,7 +24,7 @@ jobs:
submodules: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
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 @@ -19,7 +19,7 @@ jobs:
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.9"
- uses: astral-sh/setup-uv@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
sync-labels: true
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
fetch-depth: 0
submodules: true

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

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

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
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 @@ -19,7 +19,7 @@ jobs:
- name: Update to latest
run: git submodule foreach "git checkout develop || git checkout master"

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.12"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:

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

- uses: pypa/cibuildwheel@v3.1
- uses: pypa/cibuildwheel@v3.2
env:
CIBW_BUILD: ${{ matrix.build }}
CIBW_ARCHS: ${{ matrix.arch }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- run: brew uninstall cmake; brew install cmake

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

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ test-skip = [
"gp311_242-macosx_x86_64",
"gp311_242-manylinux_aarch64",
"gp311_242-win*", # pytest crashes with module 'io' has no attribute '_WindowsConsoleIO'
"gp312_*", # No numpy wheels yet
"cp314*-ios_*", # No numpy wheels yet
]
enable = ["cpython-freethreading", "pypy", "graalpy"]
Expand Down
Loading