Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
sappelhoff committed Nov 23, 2023
1 parent dd7f0e2 commit 76b88ff
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,16 @@ jobs:
python -c 'import edfio; print(edfio.__version__)'
test:
# For GitHub "required" CI checks, add in branch protection:
# 6 checks:
# for each OS (ubuntu, macos, windows):
# 3.9 -> stable / full / stable
# 3.12 -> stable / full / stable
#
# 3 additional checks:
# ubuntu / 3.12 / main / full / main
# ubuntu / 3.9 / prev / full / stable
# ubuntu / 3.12 / stable / minimal / stable
timeout-minutes: 60
runs-on: ${{ matrix.os }}
strategy:
Expand Down
4 changes: 4 additions & 0 deletions doc/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ The following authors contributed for the first time. Thank you so much! 🤩

The following authors had contributed before. Thank you for sticking around! 🤘

* `Laetitia Fesselier`_
* `Richard Höchenberger`_
* `Stefan Appelhoff`_

Detailed list of changes
Expand All @@ -41,6 +43,8 @@ Detailed list of changes

- MNE-BIDS now requires Python 3.9 or higher.
- MNE-BIDS now requires MNE-Python 1.5.0 or higher.
- ``edfio`` replaces ``EDFlib-Python`` for export to EDF with MNE-Python >= 1.7.0.
- Version requirements for optional dependency packages have been bumped up, see installation instructions.

🪲 Bug fixes
^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion examples/anonymize_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
# anonymize the entire dataset again.

for i in range(2):
print(f"\n\nRun {i+1}\n")
print(f"\n\nRun {i + 1}\n")
shutil.rmtree(bids_root_anon)
anonymize_dataset(
bids_root_in=bids_root,
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ filterwarnings =
ignore:`np.MachAr` is deprecated.*:DeprecationWarning
# old MNE _fake_click
ignore:The .*_event function was deprecated in Matplotlib.*:
ignore:datetime\.datetime\.utcfromtimestamp.* is deprecated and scheduled for removal in a future version.*:DeprecationWarning

[pydocstyle]
convention = pep257
Expand Down

0 comments on commit 76b88ff

Please sign in to comment.