Skip to content

Commit

Permalink
[MRG] fix links, remove ubuntu 20.04 from CI (#1111)
Browse files Browse the repository at this point in the history
* fix links

* remove ubuntu-20.04 from CI
  • Loading branch information
sappelhoff authored Dec 13, 2022
1 parent 79439c8 commit 66c3ece
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.10"] # Oldest and newest supported versions
mne-version: [mne-stable]
bids-validator-version: [validator-stable]
Expand Down
2 changes: 1 addition & 1 deletion doc/whats_new_previous_releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Detailed list of changes

- Until now, :class:`mne_bids.BIDSPath` prepends extensions with a period "." automatically. We intend to remove this undocumented side-effect and now emit a ``FutureWarning`` if an ``extension`` that does not start with a ``.`` is provided. Starting with MNE-BIDS 0.12, an exception will be raised in this case, by `Richard Höchenberger`_ (:gh:`1061`)

- Provide a more helpful error message when trying to write non-preloaded concatenated data, by `Richard Höchenberger`_ (:gh:`#1075`)
- Provide a more helpful error message when trying to write non-preloaded concatenated data, by `Richard Höchenberger`_ (:gh:`1075`)

🛠 Requirements
^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion examples/convert_mne_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
to the BIDS standard.
In a second step we will read the organized dataset using MNE-BIDS.
.. _BIDS dataset_description.json definition: https://bids-specification.readthedocs.io/en/stable/modality-agnostic-files.html#dataset-description
.. _BIDS dataset_description.json definition: https://bids-specification.readthedocs.io/en/latest/modality-agnostic-files.html#dataset-description
.. _ds000248 dataset_description.json: https://github.com/sappelhoff/bids-examples/blob/master/ds000248/dataset_description.json
""" # noqa: D400 D205 E501

Expand Down
2 changes: 1 addition & 1 deletion mne_bids/dig.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def template_to_head(info, space, coord_frame='auto', unit='auto',
%(info_not_none)s The info is modified in place.
space : str
The name of the BIDS standard template. See
https://bids-specification.readthedocs.io/en/stable/appendices/coordinate-systems.html#standard-template-identifiers
https://bids-specification.readthedocs.io/en/latest/appendices/coordinate-systems.html#standard-template-identifiers
for a list of acceptable spaces.
coord_frame : 'mri' | 'mri_voxel' | 'ras'
BIDS template coordinate systems do not specify a coordinate frame,
Expand Down
2 changes: 1 addition & 1 deletion mne_bids/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@ def get_datatypes(root, verbose=None):
"""
# Take all possible data types from "entity" table
# (Appendix in BIDS spec)
# https://bids-specification.readthedocs.io/en/stable/appendices/entity-table.html # noqa
# https://bids-specification.readthedocs.io/en/latest/appendices/entity-table.html # noqa
datatype_list = ('anat', 'func', 'dwi', 'fmap', 'beh',
'meg', 'eeg', 'ieeg', 'nirs')
datatypes = list()
Expand Down

0 comments on commit 66c3ece

Please sign in to comment.