Skip to content

Commit 17f4b89

Browse files
authored
Merge pull request #422 from EIT-ALIVE/fix/mkdocs-dependencies
Fix mkdocs dependencies
2 parents ea995f6 + 1f5465b commit 17f4b89

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

eitprocessing/plotting/filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
from dataclasses import dataclass
12
from typing import TypeVar
23

34
import numpy as np
4-
from attr import dataclass
55
from matplotlib import axes, figure
66
from matplotlib import pyplot as plt
77
from scipy import signal

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ dependencies = [
4545
"typing_extensions",
4646
"pyyaml",
4747
"frozendict>=2.4.6",
48-
"mkdocs-jupyter>=0.25.1",
4948
"scikit-image>=0.25.2",
5049
]
5150

@@ -61,14 +60,15 @@ dev = [
6160
]
6261
testing = ["pytest >= 7.4.0, < 8.4.0", "pytest-cov", "coveralls"]
6362
docs = [
64-
"mkdocs",
65-
"mkdocs-material",
66-
"mkdocstrings",
67-
"mkdocstrings-python",
68-
"mkdocs-exclude",
69-
"mike",
70-
"pymdown-extensions",
71-
"black",
63+
"mkdocs >= 1.6.1",
64+
"mkdocs-material >= 9.6.18",
65+
"mkdocstrings >= 0.30.0",
66+
"mkdocstrings-python >= 1.17.0",
67+
"mkdocs-exclude >= 1.0.2",
68+
"mike >= 2.1.3",
69+
"pymdown-extensions >= 10.16.1",
70+
"black >= 25.1.0",
71+
"mkdocs-jupyter >=0.25.1",
7272
]
7373
notebooks = [
7474
"jupyter >= 1.0.0",

0 commit comments

Comments
 (0)