Skip to content

Commit 2117b2c

Browse files
committed
fixed docs?
1 parent d89afed commit 2117b2c

File tree

4 files changed

+29
-26
lines changed

4 files changed

+29
-26
lines changed

.github/workflows/test-and-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10"]
15+
python-version: ["3.9", "3.10"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

poetry.lock

+25-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ pytest = "^6"
5555
pytest-cov = "^2"
5656
ipykernel = "^6"
5757
ruff = "^0"
58-
# Doc dependencies. They also need to be updated in ./docs/requirements.txt
59-
sphinx = "^4"
58+
sphinx = "^5"
6059
numpydoc = "^1"
6160
sphinx-gallery = "^0.10.0"
6261
sphinx_issues = "^1.2.0"

src/biopsykit/io/tfm.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Module for loading and processing Task Force Monitor (TFM) data."""
2-
from typing import ClassVar, Optional, Self
2+
from typing import ClassVar, Optional
33

44
import pandas as pd
55
from scipy.io import loadmat
@@ -42,7 +42,7 @@ def from_mat_file(
4242
path: path_t,
4343
# channel_mapping: Optional[Dict[str, str]] = None,
4444
tz: Optional[str] = "Europe/Berlin",
45-
) -> Self:
45+
):
4646
"""Load TFM data from a .mat file.
4747
4848
Parameters

0 commit comments

Comments
 (0)