Skip to content

Commit 9ffcd57

Browse files
authored
Merge pull request #287 from EIT-ALIVE/fix_include_intervaldata_slicing_sequence
Include IntervalData when slicing Sequence by time
2 parents 390d582 + 587a9f0 commit 9ffcd57

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# YAML 1.2
22
---
3-
cff-version: "1.2.0"
3+
cff-version: "1.2.1"
44
title: "eitprocessing"
55
authors:
66
- family-names: Bodor
@@ -41,7 +41,7 @@ authors:
4141

4242
date-released: 2023-03-23
4343
doi: 10.5281/zenodo.7869553
44-
version: "1.2.0"
44+
version: "1.2.1"
4545
repository-code: "git@github.com:EIT-ALIVE/eitprocessing"
4646
keywords:
4747
- Mechanical lung ventilation

eitprocessing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.0"
1+
__version__ = "1.2.1"

eitprocessing/datahandling/sequence.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,6 @@ def select_by_time(
158158
start_inclusive=start_inclusive,
159159
end_inclusive=end_inclusive,
160160
)
161-
for key in ("eit_data", "continuous_data", "sparse_data")
161+
for key in ("eit_data", "continuous_data", "sparse_data", "interval_data")
162162
},
163163
)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "eitprocessing"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "Processing of lung image data from electrical impedance tomography."
99
readme = "README.md"
1010
requires-python = ">=3.10"
@@ -157,7 +157,7 @@ isort.known-first-party = ["eitprocessing"]
157157
"docs/*" = ["ALL"]
158158

159159
[tool.bumpversion]
160-
current_version = "1.2.0"
160+
current_version = "1.2.1"
161161

162162
[[tool.bumpversion.files]]
163163
filename = "pyproject.toml"

0 commit comments

Comments
 (0)