Skip to content

Commit bbde9aa

Browse files
authored
Merge branch 'main' into remove-versioneer
2 parents be5723e + 28ef1ff commit bbde9aa

5 files changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,17 @@ jobs:
2121
runs-on: ${{ matrix.os }}
2222
strategy:
2323
matrix:
24-
# macos-13 is an intel runner, macos-15 is apple silicon
25-
os: [ubuntu-24.04, ubuntu-24.04-arm, windows-2025, macos-13, macos-15]
24+
os: [ubuntu-24.04, ubuntu-24.04-arm, windows-2025, macos-15-intel, macos-15]
2625

2726
steps:
28-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2928
with:
3029
fetch-depth: 0
3130

3231
- name: Build wheels
33-
uses: pypa/cibuildwheel@v3.2.1
32+
uses: pypa/cibuildwheel@v3.3.1
3433

35-
- uses: actions/upload-artifact@v5
34+
- uses: actions/upload-artifact@v6
3635
with:
3736
name: wheel-${{ matrix.os }}
3837
path: ./wheelhouse/*.whl
@@ -42,7 +41,7 @@ jobs:
4241
runs-on: ubuntu-latest
4342

4443
steps:
45-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4645
with:
4746
fetch-depth: 0
4847

@@ -58,7 +57,7 @@ jobs:
5857
- name: Test build integrity and build sdist
5958
run: tox -e build
6059

61-
- uses: actions/upload-artifact@v5
60+
- uses: actions/upload-artifact@v6
6261
with:
6362
name: sdist
6463
path: dist/*.tar.gz
@@ -77,7 +76,7 @@ jobs:
7776

7877
steps:
7978
- name: Download all artifacts
80-
uses: actions/download-artifact@v6
79+
uses: actions/download-artifact@v7
8180
with:
8281
path: dist
8382
merge-multiple: true

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
permissions:
1414
contents: write
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 0
1515

.github/workflows/tests-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: ["3.11", "3.14"]
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version: "3.14"
2727

2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0
3232

0 commit comments

Comments
 (0)