-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into Replace_percent_format_with_format_specifiers
- Loading branch information
Showing
50 changed files
with
243 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,58 +22,6 @@ _check_skip: &check_skip | |
fi | ||
jobs: | ||
pytest-macos-arm64: | ||
parameters: | ||
scheduled: | ||
type: string | ||
default: "false" | ||
macos: | ||
xcode: "14.2.0" | ||
resource_class: macos.m1.medium.gen1 | ||
environment: | ||
HOMEBREW_NO_AUTO_UPDATE: 1 | ||
steps: | ||
- checkout | ||
- run: | ||
<<: *check_skip | ||
- run: | ||
name: Install Python and dependencies | ||
command: | | ||
set -eo pipefail | ||
brew install [email protected] | ||
which python | ||
which pip | ||
pip install --upgrade pip | ||
pip install --upgrade --only-binary "numpy,scipy,dipy,statsmodels" -ve .[full,test_extra] | ||
# 3D too slow on Apple's software renderer, and numba causes us problems | ||
pip uninstall -y vtk pyvista pyvistaqt numba | ||
mkdir -p test-results | ||
echo "set -eo pipefail" >> $BASH_ENV | ||
- run: | ||
command: mne sys_info | ||
- run: | ||
command: ./tools/get_testing_version.sh && cat testing_version.txt | ||
- restore_cache: | ||
keys: | ||
- data-cache-testing-{{ checksum "testing_version.txt" }} | ||
- run: | ||
command: python -c "import mne; mne.datasets.testing.data_path(verbose=True)" | ||
- save_cache: | ||
key: data-cache-testing-{{ checksum "testing_version.txt" }} | ||
paths: | ||
- ~/mne_data/MNE-testing-data # (2.5 G) | ||
- run: | ||
command: pytest -m "not slowtest" --tb=short --cov=mne --cov-report xml -vv mne | ||
- run: | ||
name: Prepare test data upload | ||
command: cp -av junit-results.xml test-results/junit.xml | ||
- store_test_results: | ||
path: ./test-results | ||
# Codecov orb has bugs on macOS (gpg issues) | ||
# - codecov/upload | ||
- run: | ||
command: bash <(curl -s https://codecov.io/bash) | ||
|
||
build_docs: | ||
parameters: | ||
scheduled: | ||
|
@@ -591,20 +539,6 @@ workflows: | |
only: | ||
- main | ||
|
||
weekly: | ||
jobs: | ||
- pytest-macos-arm64: | ||
name: pytest_macos_arm64_weekly | ||
scheduled: "true" | ||
triggers: | ||
- schedule: | ||
# "At 6:00 AM GMT every Monday" | ||
cron: "0 6 * * 1" | ||
filters: | ||
branches: | ||
only: | ||
- main | ||
|
||
monthly: | ||
jobs: | ||
- linkcheck: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Updated the text in the preprocessing tutorial to use :class:`mne.io.Raw.pick()` instead of the legacy :class:`mne.io.Raw.pick_types()`, by :newcontrib:`btkcodedev`. | ||
Updated the text in the preprocessing tutorial to use :meth:`mne.io.Raw.pick` instead of the legacy :meth:`mne.io.Raw.pick_types`, by :newcontrib:`btkcodedev`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
For developers, ``pytest>=8.0`` is now required for running unit tests, by `Eric Larson`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix bugs with :class:`mne.Report` CSS where TOC items could disappear at the bottom of the page, by `Eric Larson`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.