Skip to content

Commit

Permalink
Merge pull request #287 from EIT-ALIVE/fix_include_intervaldata_slici…
Browse files Browse the repository at this point in the history
…ng_sequence

Include IntervalData when slicing Sequence by time
  • Loading branch information
psomhorst authored Jul 25, 2024
2 parents 390d582 + 587a9f0 commit 9ffcd57
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# YAML 1.2
---
cff-version: "1.2.0"
cff-version: "1.2.1"
title: "eitprocessing"
authors:
- family-names: Bodor
Expand Down Expand Up @@ -41,7 +41,7 @@ authors:

date-released: 2023-03-23
doi: 10.5281/zenodo.7869553
version: "1.2.0"
version: "1.2.1"
repository-code: "git@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.2.0"
__version__ = "1.2.1"
2 changes: 1 addition & 1 deletion eitprocessing/datahandling/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,6 @@ def select_by_time(
start_inclusive=start_inclusive,
end_inclusive=end_inclusive,
)
for key in ("eit_data", "continuous_data", "sparse_data")
for key in ("eit_data", "continuous_data", "sparse_data", "interval_data")
},
)
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.2.0"
version = "1.2.1"
description = "Processing of lung image data from electrical impedance tomography."
readme = "README.md"
requires-python = ">=3.10"
Expand Down Expand Up @@ -157,7 +157,7 @@ isort.known-first-party = ["eitprocessing"]
"docs/*" = ["ALL"]

[tool.bumpversion]
current_version = "1.2.0"
current_version = "1.2.1"

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

0 comments on commit 9ffcd57

Please sign in to comment.