Skip to content

Commit 1441210

Browse files
authored
Fix CI. (#332)
1 parent 6ef2e48 commit 1441210

4 files changed

Lines changed: 754 additions & 732 deletions

File tree

.github/workflows/build.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131

3232
steps:
33-
- uses: actions/checkout@v6
33+
- uses: actions/checkout@v7
3434
with:
3535
fetch-depth: 0
3636
- name: Setup MSVC (win32)
@@ -42,7 +42,7 @@ jobs:
4242
if: ${{ matrix.os == 'windows-latest' && matrix.archs == 'auto32' }}
4343
run: rm "c:\Program Files\Git\usr\bin\link.exe"
4444
- name: Build wheels
45-
uses: pypa/cibuildwheel@v4.0.0
45+
uses: pypa/cibuildwheel@v4.1.0
4646
env:
4747
CIBW_ARCHS: ${{ matrix.archs }}
4848
- uses: actions/upload-artifact@v7
@@ -54,7 +54,7 @@ jobs:
5454
name: Make SDist
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v7
5858
with:
5959
fetch-depth: 0
6060

@@ -85,13 +85,13 @@ jobs:
8585
name: Documentation, Linting and Coverage
8686
runs-on: ubuntu-latest
8787
steps:
88-
- uses: actions/checkout@v6
88+
- uses: actions/checkout@v7
8989
with:
9090
fetch-depth: 0
9191
- uses: actions/setup-python@v6
9292
with:
9393
# Update according to NEP-29
94-
python-version: '3.11'
94+
python-version: '3.12'
9595
cache: 'pip'
9696
- name: Install package
9797
run: |
@@ -127,18 +127,18 @@ jobs:
127127
name: Run SciPy FFT tests
128128
runs-on: ubuntu-latest
129129
steps:
130-
- uses: actions/checkout@v6
130+
- uses: actions/checkout@v7
131131
with:
132132
fetch-depth: 0
133133
- uses: actions/setup-python@v6
134134
with:
135135
# Update according to NEP-29
136-
python-version: '3.11'
136+
python-version: '3.12'
137137
cache: 'pip'
138138
- name: Install package
139139
run: |
140140
pip install -v .[tests] pytest"<7"
141-
pip install scipy==1.9.3
141+
pip install scipy==1.11.4
142142
- name: SciPy tests
143143
run: |
144144
import scipy.fft

0 commit comments

Comments
 (0)