- cziread: deal with missing exposure times

This commit is contained in:
w.pomp
2025-11-26 17:24:48 +01:00
parent 7fe1d189e5
commit e27a0f2657
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ["3.10", "3.11", "3.12"] python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@@ -646,7 +646,7 @@ class OmeParse:
the_z=z, the_z=z,
the_t=t, the_t=t,
delta_t=delta_ts[t], delta_t=delta_ts[t],
exposure_time=exposure_times[c], exposure_time=exposure_times[min(c, len(exposure_times) - 1)] if len(exposure_times) > 0 else None,
position_x=self.positions[0], position_x=self.positions[0],
position_x_unit=self.um, position_x_unit=self.um,
position_y=self.positions[1], position_y=self.positions[1],

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "ndbioimage" name = "ndbioimage"
version = "2025.10.0" version = "2025.11.0"
description = "Bio image reading, metadata and some affine registration." description = "Bio image reading, metadata and some affine registration."
authors = [ authors = [
{ name = "W. Pomp", email = "w.pomp@nki.nl" } { name = "W. Pomp", email = "w.pomp@nki.nl" }