diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e13308a02..9b0300459 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: files: mne_icalabel - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.1.13 + rev: v0.1.14 hooks: - id: ruff name: ruff linter diff --git a/mne_icalabel/conftest.py b/mne_icalabel/conftest.py index 35f45200d..be0473bfb 100644 --- a/mne_icalabel/conftest.py +++ b/mne_icalabel/conftest.py @@ -8,6 +8,8 @@ def pytest_configure(config): # Until MNE 1.6 is the minimum supported version # c.f. https://github.com/mne-tools/mne-python/pull/12143 ignore:Setting non-standard config type.*:RuntimeWarning + # pandas 3.0 will require pyarrow + ignore:\n*Pyarrow will become a required dependency of pandas.*:DeprecationWarning """ for warning_line in warnings_lines.split("\n"): warning_line = warning_line.strip()