Skip to content
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 .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- run: pip install --upgrade towncrier pygithub gitpython numpy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/credit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v5
with:
persist-credentials: true
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.12'
- run: pip install pygithub -e .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.10'
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5
with:
persist-credentials: false
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: '3.13'
- uses: pre-commit/action@v3.0.1
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
pyvista: false
wm: false
# Python (if pip)
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}
if: startswith(matrix.kind, 'pip')
Expand Down
2 changes: 1 addition & 1 deletion doc/changes/names.inc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
.. _Harrison Ritz: https://github.com/harrisonritz
.. _Hasrat Ali Arzoo: https://github.com/hasrat17
.. _Henrich Kolkhorst: https://github.com/hekolk
.. _Hongjiang Ye: https://github.com/hongjiang-ye
.. _Hongjiang Ye: https://github.com/ye-hongjiang
.. _Hubert Banville: https://github.com/hubertjb
.. _Hyonyoung Shin: https://github.com/mcvain
.. _Hüseyin Orkun Elmas: https://github.com/HuseyinOrkun
Expand Down
7 changes: 6 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,10 +650,11 @@ def fix_sklearn_inherited_docstrings(app, what, name, obj, options, lines):
"https://doi.org/10.1073/", # pnas.org
"https://doi.org/10.1080/", # www.tandfonline.com
"https://doi.org/10.1088/", # www.tandfonline.com
"https://doi.org/10.1090/", # ams.org
"https://doi.org/10.1093/", # academic.oup.com/sleep/
"https://doi.org/10.1098/", # royalsocietypublishing.org
"https://doi.org/10.1101/", # www.biorxiv.org
"https://doi.org/10.1103", # journals.aps.org/rmp
"https://doi.org/10.1103/", # journals.aps.org/rmp
"https://doi.org/10.1111/", # onlinelibrary.wiley.com/doi/10.1111/psyp
"https://doi.org/10.1126/", # www.science.org
"https://doi.org/10.1137/", # epubs.siam.org
Expand All @@ -663,7 +664,9 @@ def fix_sklearn_inherited_docstrings(app, what, name, obj, options, lines):
"https://doi.org/10.1162/", # direct.mit.edu/neco/article/
"https://doi.org/10.1167/", # jov.arvojournals.org
"https://doi.org/10.1177/", # journals.sagepub.com
"https://doi.org/10.1523/", # jneurosci.org
"https://doi.org/10.3109/", # www.tandfonline.com
"https://doi.org/10.3390/", # mdpi.com
"https://hms.harvard.edu/", # doc/funding.rst
"https://stackoverflow.com/questions/21752259/python-why-pickle", # doc/help/faq
"https://www.biorxiv.org/content/10.1101/", # biorxiv.org
Expand All @@ -675,6 +678,8 @@ def fix_sklearn_inherited_docstrings(app, what, name, obj, options, lines):
"http://prdownloads.sourceforge.net/optipng",
"https://sourceforge.net/projects/aespa/files/",
"https://sourceforge.net/projects/ezwinports/files/",
r"https://.*\.sourceforge\.net/",
"https://www.cogsci.nl/smathot",
"https://www.mathworks.com/products/compiler/matlab-runtime.html",
"https://medicine.umich.edu/dept/khri/ross-maddox-phd",
# TODO https://github.com/mne-tools/curry-python-reader/issues/5
Expand Down
4 changes: 4 additions & 0 deletions doc/sphinxext/related_software.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@
"Summary": "DICOM to NIfTI converter",
},
# TODO: these do not set a valid homepage or documentation page on PyPI
"python-picard": { # https://github.com/mind-inria/picard/issues/60
"Home-page": "https://github.com/mind-inria/picard",
"Summary": "Preconditioned ICA for Real Data",
},
"eeg_positions": {
"Home-page": "https://eeg-positions.readthedocs.io",
"Summary": "Compute and plot standard EEG electrode positions.",
Expand Down
2 changes: 1 addition & 1 deletion mne/_ola.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ def __init__(
# Create our window boundaries
window_name = window if isinstance(window, str) else "custom"
self._window = get_window(
window, self._n_samples, fftbins=(self._n_samples - 1) % 2
window, self._n_samples, fftbins=bool((self._n_samples - 1) % 2)
)
self._window /= _check_cola(
self._window, self._n_samples, self._step, window_name, tol=tol
Expand Down
Loading