Skip to content

Commit 7217598

Browse files
authored
Merge pull request #155 from kushalbakshi/main
Update import statement for prairie_view_loader
2 parents 536ad3a + f2084f2 commit 7217598

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
44
[Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
55

6+
## [0.7.8] - 2023-07-23
7+
8+
+ Update - import statement for `prairie_view_loader` in `scan.py`
9+
610
## [0.7.7] - 2023-07-13
711

812
+ Add - Environment variables for the Python version in the Dev Container
@@ -156,6 +160,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
156160
+ Add - `scan` and `imaging` modules
157161
+ Add - Readers for `ScanImage`, `ScanBox`, `Suite2p`, `CaImAn`
158162

163+
[0.7.8]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.8
159164
[0.7.7]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.7
160165
[0.7.6]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.6
161166
[0.7.5]: https://github.com/datajoint/element-calcium-imaging/releases/tag/0.7.5

element_calcium_imaging/scan.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,10 +517,12 @@ def estimate_nd2_scan_duration(nd2_scan_obj):
517517
]
518518
)
519519
elif acq_software == "PrairieView":
520-
from element_interface import prairieviewreader
520+
from element_interface import prairie_view_loader
521521

522522
scan_filepaths = get_image_files(key, "*.tif")
523-
PVScan_info = prairieviewreader.get_pv_metadata(scan_filepaths[0])
523+
PVScan_info = prairie_view_loader.get_prairieview_metadata(
524+
scan_filepaths[0]
525+
)
524526
self.insert1(
525527
dict(
526528
key,

element_calcium_imaging/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.7.7"
2+
__version__ = "0.7.8"

0 commit comments

Comments
 (0)