Skip to content

Commit

Permalink
fixed docs?
Browse files Browse the repository at this point in the history
  • Loading branch information
richrobe committed Jan 3, 2025
1 parent d89afed commit 2117b2c
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
46 changes: 25 additions & 21 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ pytest = "^6"
pytest-cov = "^2"
ipykernel = "^6"
ruff = "^0"
# Doc dependencies. They also need to be updated in ./docs/requirements.txt
sphinx = "^4"
sphinx = "^5"
numpydoc = "^1"
sphinx-gallery = "^0.10.0"
sphinx_issues = "^1.2.0"
Expand Down
4 changes: 2 additions & 2 deletions src/biopsykit/io/tfm.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Module for loading and processing Task Force Monitor (TFM) data."""
from typing import ClassVar, Optional, Self
from typing import ClassVar, Optional

import pandas as pd
from scipy.io import loadmat
Expand Down Expand Up @@ -42,7 +42,7 @@ def from_mat_file(
path: path_t,
# channel_mapping: Optional[Dict[str, str]] = None,
tz: Optional[str] = "Europe/Berlin",
) -> Self:
):
"""Load TFM data from a .mat file.
Parameters
Expand Down

0 comments on commit 2117b2c

Please sign in to comment.