Skip to content

Commit 85c335d

Browse files
committed
Update pypa/cibuildwheel from 2.22 to 3.2.1 (and others)
1 parent 1abec15 commit 85c335d

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
name: pre-commit-hooks
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
18-
- uses: actions/setup-python@v5
17+
- uses: actions/checkout@v5
18+
- uses: actions/setup-python@v6
1919
with:
2020
python-version: "3.10"
2121
- uses: pre-commit/[email protected]

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14"]
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
- name: Conda

.github/workflows/update_graphblas.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
if: github.repository == 'GraphBLAS/python-suitesparse-graphblas' || github.repository == 'alugowski/python-suitesparse-graphblas'
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
fetch-depth: 0
3333

34-
- uses: actions/setup-python@v5
34+
- uses: actions/setup-python@v6
3535
with:
3636
python-version: "3.11"
3737

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Build SDist
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040

@@ -94,7 +94,7 @@ jobs:
9494
cibw_archs: "arm64"
9595

9696
steps:
97-
- uses: actions/checkout@v4
97+
- uses: actions/checkout@v5
9898
with:
9999
fetch-depth: 0
100100

@@ -145,7 +145,7 @@ jobs:
145145
brew fetch --retry libomp && brew reinstall libomp
146146
echo MACOSX_DEPLOYMENT_TARGET=$(otool -l $(brew --prefix libomp)/lib/libomp.dylib | grep minos | awk '{print $2}') >> $GITHUB_ENV
147147
148-
- uses: pypa/cibuildwheel@v2.22
148+
- uses: pypa/cibuildwheel@v3.2.1
149149
with:
150150
output-dir: wheelhouse
151151
env:
@@ -207,11 +207,11 @@ jobs:
207207
if: github.repository == 'GraphBLAS/python-suitesparse-graphblas' && ((github.event_name == 'release' && github.event.action == 'published') || (github.event_name == 'workflow_dispatch' && github.event.inputs.upload_dest != 'No Upload'))
208208

209209
steps:
210-
- uses: actions/setup-python@v5
210+
- uses: actions/setup-python@v6
211211
with:
212212
python-version: "3.x"
213213

214-
- uses: actions/download-artifact@v4
214+
- uses: actions/download-artifact@v5
215215
with:
216216
path: dist
217217
merge-multiple: true

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ requires = [
66
"setuptools-git-versioning",
77
"wheel",
88
"cffi>=1.11",
9+
# Free-threading in Python 3.14 requires Cython >=3.1
910
"cython; python_version<'3.14'",
1011
"cython>=3.1; python_version>='3.14'",
1112
"numpy>=2.0",

0 commit comments

Comments
 (0)