Skip to content

Commit 9f64b72

Browse files
authored
Merge pull request #1744 from AllenInstitute/rc/2.4.0
rc/2.4.0
2 parents 71281bf + 478126e commit 9f64b72

File tree

65 files changed

+2639
-1987
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2639
-1987
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [2.4.0] = 2020-12-21
5+
- When running raster_plot on a spike_times dataframe, the spike times from each unit are plotted twice. (thank you @dgmurx)
6+
- improvements and fixes to behavior ophys NWB files.
7+
- improvements and fixes to BehaviorProjectCache tables including new column "donor_id"
8+
- implemented a timeout to obtaining an ecephys session. (thank you @wesley-jones)
9+
- big overhaul of how Behavior and BehaviorOphys classes are structured for the visual behavior project. See https://github.com/AllenInstitute/AllenSDK/pull/1789
10+
411
## [2.3.3] = 2020-11-12
512
### Bug Fixes
613
- (Internal) Fixed a bug in mesoscope processing where the ophys acquisition frames were being truncated

allensdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838

3939

40-
__version__ = '2.3.2'
40+
__version__ = '2.4.0'
4141

4242

4343
try:

allensdk/api/caching_utilities.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ def call_caching(
105105
except Exception as e:
106106
if isinstance(e, FileNotFoundError):
107107
logger.info("No cache file found.")
108+
# Pandas throws ValueError rather than FileNotFoundError
109+
elif (isinstance(e, ValueError)
110+
and str(e) == "Expected object or value"):
111+
logger.info("No cache file found.")
108112
if cleanup is not None and not lazy:
109113
cleanup()
110114

allensdk/brain_observatory/behavior/behavior_ophys_api/__init__.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

allensdk/brain_observatory/behavior/behavior_ophys_api/behavior_ophys_nwb_api.py

Lines changed: 0 additions & 299 deletions
This file was deleted.

0 commit comments

Comments
 (0)