Skip to content

Commit 70fbbd8

Browse files
Bump actions/download-artifact from 4 to 5 in the actions group (#13367)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Eric Larson <[email protected]>
1 parent a07f970 commit 70fbbd8

File tree

9 files changed

+19
-14
lines changed

9 files changed

+19
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
name: pypi
4444
url: https://pypi.org/p/mne
4545
steps:
46-
- uses: actions/download-artifact@v4
46+
- uses: actions/download-artifact@v5
4747
with:
4848
name: dist
4949
path: dist

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
pytest:
5151
name: '${{ matrix.os }} / ${{ matrix.kind }} / ${{ matrix.python }}'
5252
needs: style
53-
timeout-minutes: 80
53+
timeout-minutes: 85
5454
runs-on: ${{ matrix.os }}
5555
defaults:
5656
run:

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,9 +251,9 @@ stages:
251251
3.10 pip:
252252
TEST_MODE: 'pip'
253253
PYTHON_VERSION: '3.10'
254-
3.12 pip pre:
254+
3.13 pip pre:
255255
TEST_MODE: 'pip-pre'
256-
PYTHON_VERSION: '3.12'
256+
PYTHON_VERSION: '3.13'
257257
steps:
258258
- task: UsePythonVersion@0
259259
inputs:

doc/install/installers.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Platform-specific installers
1717
:class-content: text-center
1818
:name: install-linux
1919

20-
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.0/MNE-Python-1.10.0_0-Linux.sh
20+
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.1/MNE-Python-1.10.1_0-Linux.sh
2121
:ref-type: ref
2222
:color: primary
2323
:shadow:
@@ -31,14 +31,14 @@ Platform-specific installers
3131

3232
.. code-block:: console
3333
34-
$ sh ./MNE-Python-1.10.0_0-Linux.sh
34+
$ sh ./MNE-Python-1.10.1_0-Linux.sh
3535
3636
3737
.. tab-item:: macOS (Intel)
3838
:class-content: text-center
3939
:name: install-macos-intel
4040

41-
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.0/MNE-Python-1.10.0_0-macOS_Intel.pkg
41+
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.1/MNE-Python-1.10.1_0-macOS_Intel.pkg
4242
:ref-type: ref
4343
:color: primary
4444
:shadow:
@@ -54,7 +54,7 @@ Platform-specific installers
5454
:class-content: text-center
5555
:name: install-macos-apple
5656

57-
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.0/MNE-Python-1.10.0_0-macOS_M1.pkg
57+
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.1/MNE-Python-1.10.1_0-macOS_M1.pkg
5858
:ref-type: ref
5959
:color: primary
6060
:shadow:
@@ -70,7 +70,7 @@ Platform-specific installers
7070
:class-content: text-center
7171
:name: install-windows
7272

73-
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.0/MNE-Python-1.10.0_0-Windows.exe
73+
.. button-link:: https://github.com/mne-tools/mne-installers/releases/download/v1.10.1/MNE-Python-1.10.1_0-Windows.exe
7474
:ref-type: ref
7575
:color: primary
7676
:shadow:
@@ -156,7 +156,7 @@ To remove the MNE-Python distribution provided by our installers above:
156156
.. code-block:: bash
157157
158158
$ which python
159-
/home/username/mne-python/1.10.0_0/bin/python
159+
/home/username/mne-python/1.10.1_0/bin/python
160160
$ rm -Rf /home/$USER/mne-python
161161
$ rm /home/$USER/.local/share/applications/mne-python-*.desktop
162162
@@ -170,7 +170,7 @@ To remove the MNE-Python distribution provided by our installers above:
170170
.. code-block:: bash
171171
172172
$ which python
173-
/Users/username/Applications/MNE-Python/1.10.0_0/.mne-python/bin/python
173+
/Users/username/Applications/MNE-Python/1.10.1_0/.mne-python/bin/python
174174
$ rm -Rf /Users/$USER/Applications/MNE-Python # if user-specific
175175
$ rm -Rf /Applications/MNE-Python # if system-wide
176176

mne/_fiff/tests/test_meas_info.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,7 @@ def test_csr_csc(tmp_path):
953953
assert_array_equal(ct_read.toarray(), ct.toarray())
954954

955955

956+
@pytest.mark.slowtest
956957
@testing.requires_testing_data
957958
def test_check_compensation_consistency():
958959
"""Test check picks compensation."""
@@ -1067,6 +1068,7 @@ def test_invalid_subject_birthday():
10671068
assert "birthday" not in raw.info["subject_info"]
10681069

10691070

1071+
@pytest.mark.slowtest
10701072
@pytest.mark.parametrize(
10711073
"fname",
10721074
[

mne/forward/tests/test_make_forward.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ def test_make_forward_solution_basic():
431431
make_forward_solution(fname_raw, fname_trans, fname_src, fname_bem_meg)
432432

433433

434+
@pytest.mark.slowtest
434435
@requires_openmeeg_mark()
435436
@pytest.mark.parametrize(
436437
"n_layers",

mne/tests/test_source_estimate.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1615,6 +1615,7 @@ def test_vol_adjacency():
16151615
assert np.all(adjacency2.data == 1)
16161616

16171617

1618+
@pytest.mark.slowtest
16181619
@testing.requires_testing_data
16191620
def test_spatial_src_adjacency():
16201621
"""Test spatial adjacency functionality."""

mne/utils/tests/test_config.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ def _worker_update_config_loop(home_dir, worker_id, iterations=10):
272272
return worker_id
273273

274274

275+
@pytest.mark.slowtest
275276
def test_parallel_get_set_config(tmp_path: Path):
276277
"""Test that uses parallel workers to get and set config.
277278

tools/install_pre_requirements.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ python -m pip install $STD_ARGS pip setuptools packaging \
1717
threadpoolctl cycler fonttools kiwisolver pyparsing pillow python-dateutil \
1818
patsy pytz tzdata nibabel tqdm trx-python joblib numexpr \
1919
"$QT_BINDING!=6.9.1" \
20-
py-cpuinfo blosc2 hatchling "formulaic>=1.1.0"
20+
py-cpuinfo blosc2 hatchling "formulaic>=1.1.0" \
21+
pyarrow
2122
python -m pip uninstall -yq numpy
2223
echo "::endgroup::"
2324
echo "::group::Scientific Python Nightly Wheels"
@@ -29,12 +30,11 @@ python -m pip install $STD_ARGS --only-binary ":all:" --default-timeout=60 \
2930
"matplotlib>=3.11.0.dev0" \
3031
"pandas>=3.0.0.dev0" \
3132
"dipy>=1.10.0.dev0" \
32-
"pyarrow>=20.0.0.dev0" \
3333
"tables>=3.10.3.dev0" \
3434
"statsmodels>=0.15.0.dev697" \
3535
"h5py>=3.13.0"
3636
echo "::endgroup::"
37-
37+
# No "pyarrow>=22.0.0.dev0" because of https://github.com/apache/arrow/issues/47308
3838
# No Numba because it forces an old NumPy version
3939

4040
echo "::group::VTK"

0 commit comments

Comments
 (0)