Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: Fix linkcheck #12162

Merged
merged 4 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/changes/names.inc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@

.. _George O'Neill: https://georgeoneill.github.io

.. _Gonzalo Reina: https://greina.me/
.. _Gonzalo Reina: https://github.com/Gon-reina

.. _Guillaume Dumas: https://mila.quebec/en/person/guillaume-dumas

Expand Down
6 changes: 6 additions & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,11 +722,17 @@ def append_attr_meth_examples(app, what, name, obj, options, lines):
"https://doi.org/10.1088/", # www.tandfonline.com
"https://doi.org/10.3109/", # www.tandfonline.com
"https://www.researchgate.net/profile/",
"https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl.html",
"https://scholar.google.com/scholar?cites=12188330066413208874&as_ylo=2014",
"https://scholar.google.com/scholar?cites=1521584321377182930&as_ylo=2013",
# 500 server error
"https://openwetware.org/wiki/Beauchamp:FreeSurfer",
# 503 Server error
"https://hal.archives-ouvertes.fr/hal-01848442",
# Read timed out
"http://www.cs.ucl.ac.uk/staff/d.barber/brml",
"https://www.cea.fr",
"http://www.humanconnectome.org/data",
# Max retries exceeded
"https://doi.org/10.7488/ds/1556",
"https://datashare.is.ed.ac.uk/handle/10283",
Expand Down
2 changes: 0 additions & 2 deletions doc/development/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,6 @@ Once you have git installed and configured, and before creating your local copy
of the codebase, go to the `MNE-Python GitHub`_ page and create a `fork`_ into
your GitHub user account.

.. image:: https://docs.github.com/assets/cb-28613/images/help/repository/fork_button.png

This will create a copy of the MNE-Python codebase inside your GitHub user
account (this is called "your fork"). Changes you make to MNE-Python will
eventually get "pushed" to your fork, and will be incorporated into the
Expand Down
1 change: 1 addition & 0 deletions doc/help/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ magnitude.
Forward and Inverse Solution
============================

.. _faq_how_should_i_regularize:

How should I regularize the covariance matrix?
----------------------------------------------
Expand Down
5 changes: 2 additions & 3 deletions mne/cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -1895,9 +1895,8 @@ def regularize(
.. note:: This function is kept for reasons of backward-compatibility.
Please consider explicitly using the ``method`` parameter in
:func:`mne.compute_covariance` to directly combine estimation
with regularization in a data-driven fashion. See the `faq
<http://mne.tools/dev/overview/faq.html#how-should-i-regularize-the-covariance-matrix>`_
for more information.
with regularization in a data-driven fashion. See the
:ref:`FAQ <faq_how_should_i_regularize>` for more information.

Parameters
----------
Expand Down