From 96afd1292163d09813b64f3a8a6d247e96a1cc49 Mon Sep 17 00:00:00 2001 From: Christoph Gohlke Date: Fri, 6 Dec 2024 20:04:55 +0000 Subject: [PATCH] Release v2024.12.6 --- README.rst | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index e3a3b6c..dc3a214 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ equipment for photon counting. :Author: `Christoph Gohlke `_ :License: BSD 3-Clause -:Version: 2024.11.24 +:Version: 2024.12.6 :DOI: `10.5281/zenodo.10125608 `_ Quickstart @@ -36,12 +36,20 @@ Requirements This revision was tested with the following requirements and dependencies (other versions may work): -- `CPython `_ 3.10.11, 3.11.9, 3.12.7, 3.13.0 +- `CPython `_ 3.10.11, 3.11.9, 3.12.8, 3.13.1 - `Numpy `_ 2.1.3 Revisions --------- +2024.12.6 + +- Fix read MeasureInfo fields as scalars (breaking). +- Update some structure field names with BH reference (breaking). +- Parse some SetupBlock binary structures (#7). +- Include more information in str(SdtFile). +- Add subtype to FileRevision. + 2024.11.24 - Update MEASURE_INFO_EXT struct to SPCM v.9.9 (breaking). @@ -85,7 +93,7 @@ Read image and metadata from a "SPC Setup & Data File": 588 >>> sdt.info.id[1:-1] 'SPC Setup & Data File' - >>> int(sdt.measure_info[0].scan_x[0]) + >>> int(sdt.measure_info[0].scan_x) 128 >>> len(sdt.data) 1 @@ -105,6 +113,8 @@ Read data and metadata from a "SPC Setup & Data File" with multiple data sets: (1, 1024) >>> sdt.times[3].shape (1024,) + >>> int(sdt.setup.bh_bin_hdr['soft_rev']) + 850 Read image data from a "SPC FCS Data File" as numpy array: