Skip to content

Commit 0ca073e

Browse files
committed
misc maint
1 parent af85617 commit 0ca073e

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/python_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest]
21-
python-version: [3.8]
21+
python-version: [3.9]
2222
env:
2323
TZ: Europe/Berlin
2424
FORCE_COLOR: true

.github/workflows/python_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v4
2222
with:
23-
python-version: 3.8
23+
python-version: 3.9
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip
27-
pip install --upgrade setuptools wheel twine
27+
python -m pip install --upgrade setuptools wheel twine
2828
- name: Build and publish
2929
env:
3030
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

.github/workflows/python_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
platform: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.8]
20+
python-version: [3.9]
2121
mne-version: [mne-stable]
2222

2323
include:
2424
# Test mne development version only on ubuntu
2525
- platform: ubuntu-latest
26-
python-version: "3.8"
26+
python-version: "3.9"
2727
mne-version: mne-main
2828
run-as-extra: true
2929

@@ -86,7 +86,7 @@ jobs:
8686
path: docs/_build/html
8787

8888
- name: Upload coverage report
89-
if: "matrix.platform == 'ubuntu-latest'"
9089
uses: codecov/codecov-action@v3
9190
with:
91+
token: ${{ secrets.CODECOV_TOKEN }} # not required but might help API rate limits
9292
files: ./coverage.xml

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ Victor Xiang <[email protected]>
33
44
Yorguin Mantilla <[email protected]>
55
6+
Ole Bialas <[email protected]>

docs/whats_new.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Changelog
4040

4141
Bug
4242
~~~
43-
- :func:`find_bad_by_ransac <ransac.find_bad_by_ransac>` now accepts channel labels (``complete_chn_labs``) as a list as well, by `Ole_Bialas`_ (:gh:`116`).
43+
- :func:`find_bad_by_ransac <ransac.find_bad_by_ransac>` now accepts channel labels (``complete_chn_labs``) as a list as well, by `Ole Bialas`_ (:gh:`116`).
4444

4545
.. _changes_0_4_2:
4646

@@ -224,3 +224,4 @@ Changelog
224224
.. _Austin Hurst: https://github.com/a-hurst
225225
.. _Jonte Dancker: https://github.com/joDancker/
226226
.. _Mathieu Scheltienne: https://github.com/mscheltienne
227+
.. _Ole Bialas: https://github.com/OleBialas

0 commit comments

Comments
 (0)