Skip to content

Commit

Permalink
FIX: More
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jan 23, 2024
1 parent 949c028 commit 464feb8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1344,6 +1344,10 @@ def reset_warnings(gallery_conf, fname):
r"ast\.NameConstant is deprecated and will be removed in Python 3\.14",
# pooch
r"Python 3\.14 will, by default, filter extracted tar archives.*",
# seaborn
r"DataFrameGroupBy\.apply operated on the grouping columns.*",
# pandas
r"\nPyarrow will become a required dependency of pandas.*",
):
warnings.filterwarnings( # deal with other modules having bad imports
"ignore", message=".*%s.*" % key, category=DeprecationWarning
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dependencies:
- pip
- numpy
- scipy
- openblas!=0.3.26 # until https://github.com/conda-forge/scipy-feedstock/pull/268 lands
- matplotlib
- tqdm
- pooch>=1.5
Expand Down
2 changes: 1 addition & 1 deletion mne/io/fieldtrip/tests/test_fieldtrip.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def test_one_channel_elec_bug(version):
@pytest.mark.filterwarnings("ignore:.*parse meas date.*:RuntimeWarning")
@pytest.mark.filterwarnings("ignore:.*number of bytes.*:RuntimeWarning")
@pytest.mark.parametrize("version", all_versions)
@pytest.mark.parametrize("type", ["averaged", "epoched", "raw"])
@pytest.mark.parametrize("type_", ["averaged", "epoched", "raw"])
def test_throw_exception_on_cellarray(version, type_):
"""Test for a meaningful exception when the data is a cell array."""
fname = get_data_paths("cellarray") / f"{type_}_{version}.mat"
Expand Down

0 comments on commit 464feb8

Please sign in to comment.