Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/229_fix_dependency'
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 27, 2024
2 parents 7c0d15c + 2917c52 commit 0064b5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions eitprocessing/datahandling/eitdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@
from dataclasses import dataclass, field
from enum import auto
from pathlib import Path
from typing import TypeVar
from typing import TYPE_CHECKING, TypeVar

import numpy as np
from strenum import LowercaseStrEnum
from typing_extensions import Self

from eitprocessing.datahandling import DataContainer
from eitprocessing.datahandling.mixins.slicing import SelectByTime

if TYPE_CHECKING:
from typing_extensions import Self


T = TypeVar("T", bound="EITData")


Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies = [
"tqdm >= 4.65.0",
"strenum >= 0.4.10",
"anytree >= 2.12.1 ",
"typing_extensions",
]

[project.optional-dependencies]
Expand Down

0 comments on commit 0064b5d

Please sign in to comment.