Skip to content

Commit

Permalink
Merge pull request #1744 from AllenInstitute/rc/2.4.0
Browse files Browse the repository at this point in the history
rc/2.4.0
  • Loading branch information
djkapner authored Dec 21, 2020
2 parents 71281bf + 478126e commit 9f64b72
Show file tree
Hide file tree
Showing 65 changed files with 2,639 additions and 1,987 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Change Log
All notable changes to this project will be documented in this file.

## [2.4.0] = 2020-12-21
- When running raster_plot on a spike_times dataframe, the spike times from each unit are plotted twice. (thank you @dgmurx)
- improvements and fixes to behavior ophys NWB files.
- improvements and fixes to BehaviorProjectCache tables including new column "donor_id"
- implemented a timeout to obtaining an ecephys session. (thank you @wesley-jones)
- big overhaul of how Behavior and BehaviorOphys classes are structured for the visual behavior project. See https://github.com/AllenInstitute/AllenSDK/pull/1789

## [2.3.3] = 2020-11-12
### Bug Fixes
- (Internal) Fixed a bug in mesoscope processing where the ophys acquisition frames were being truncated
Expand Down
2 changes: 1 addition & 1 deletion allensdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@



__version__ = '2.3.2'
__version__ = '2.4.0'


try:
Expand Down
4 changes: 4 additions & 0 deletions allensdk/api/caching_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ def call_caching(
except Exception as e:
if isinstance(e, FileNotFoundError):
logger.info("No cache file found.")
# Pandas throws ValueError rather than FileNotFoundError
elif (isinstance(e, ValueError)
and str(e) == "Expected object or value"):
logger.info("No cache file found.")
if cleanup is not None and not lazy:
cleanup()

Expand Down
62 changes: 0 additions & 62 deletions allensdk/brain_observatory/behavior/behavior_ophys_api/__init__.py

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9f64b72

Please # to comment.