Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ authors:

date-released: 2023-03-23
doi: 10.5281/zenodo.7869553
version: "1.8.0"
version: "1.8.1"
repository-code: "https://github.com/EIT-ALIVE/eitprocessing"
keywords:
- Mechanical lung ventilation
Expand Down
2 changes: 1 addition & 1 deletion eitprocessing/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.8.0"
__version__ = "1.8.1"
2 changes: 1 addition & 1 deletion eitprocessing/filters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import numpy as np

from eitprocessing.datahandling.continuousdata import ContinuousData
from eitprocessing.datahandling.eitdata import EITData
from tests.test_breath_detection import ContinuousData

T = TypeVar("T", bound=np.ndarray | ContinuousData | EITData)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "eitprocessing"
version = "1.8.0"
version = "1.8.1"
description = "Processing of lung image data from electrical impedance tomography."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -174,7 +174,7 @@ isort.known-first-party = ["eitprocessing"]
"docs/*" = ["ALL"]

[tool.bumpversion]
current_version = "1.8.0"
current_version = "1.8.1"

[[tool.bumpversion.files]]
filename = "pyproject.toml"
Expand Down